I know this could be a silly question.. but I am trying to align the filter and the CListView widget to show it appropriately as below
Here is the code
<div class="row-fluid span12">
<div class="span4">
<?php $box = $this->beginWidget(
'bootstrap.widgets.TbBox',
array(
'title' => 'Advanced Search',
'headerIcon' => 'icon-th-list',
'htmlOptions' => array('class' => 'bootstrap-widget-table')
)
);?>
<?php $this->renderPartial('_search',array('model'=>$model,)); ?>
<?php $this->endWidget(); ?>
</div>
<div class="span8">
<?php
$this->widget('zii.widgets.CListView',
array(
'dataProvider'=>$model->search(),
'ajaxUpdate' => true,
'enablePagination'=>true,
'itemView'=>'_list', // refers to the partial view named '_post'
'sortableAttributes'=>array(
'Price',
'Year',
'Lenght'
),
)
);
?>
</div>
</div>
which actually generates something like left side of the attached picture

How can I make sure that the CListView widget is aligned within the filter? And get rid of the text "Displaying 1-29 results" and align the filters on the top?
Divs are block elements, so you've two
<div class="span4">and<div class="span8">kind of blocking against one another.What if you drop the bootstrap layout, make filters in div floating left and put it inside div of CListView?
Update
From the site you've mentioned: