On the main page new products for November displays 3 items in a row. How do I change this to only show 1 item in a row.
Thanks for any help.
Jim
This is a discussion on Main page within the osCmax v2 Customization/Mods forums, part of the osCmax v2.0 Forums category; On the main page new products for November displays 3 items in a row. How do I change this to ...
On the main page new products for November displays 3 items in a row. How do I change this to only show 1 item in a row.
Thanks for any help.
Jim
I'd like to know that as well as how do you add boxes around each individual product on the main page?Originally Posted by Jimcraft
in includes/modules/new_products.php at the end of the file you should have these lines:
$col ++;
if ($col > 2) {
$col = 0;
$row ++;
}
}
change $col > 2 to $col > 0
See if this helps to show just one product/row
Works great. Thanks for the help.
Bookmarks