Product Magento-1.8 Layout Magento-1 Product List – Display More Items Per Row in Products/Category Pages

layoutmagento-1magento-1.8productproduct-list

I am trying to display more products on a single row. I don't know where I could do that? For now, it displays only 3 products per row and there is a lot of empty space.

I would like to display 5 products per row.

Best Answer

Try this simple method. Open app/design/frontend/default/YOURTHEME/catalog/product/list.phtml and the below code.

$row_count = 5 //or whatever you want
$this->setColumnCount($row_count);
Related Topic