Grid-View Look

Hi,

Can anyone please tell me how to render ‘grid’ like this page http://www.yiiframework.com/extensions/ ?

Does the page use built-in Yii components ?

Thank you,

Michael

The easiest way might be to use a CListView and use CSS to style the entries into a grid. The CSS might look something like this:




.list-grid .item

{

    min-height:6em;

    width:30%;

    margin-right:3%;

    float:left;

}