Guest Posted October 20, 2005 Posted October 20, 2005 If I have more than two images displayed they stretch and distort the page instead of going down to the next row. Is there a way I can edit the code. Take a peek? http://www.belove7.com/epiphanyetc/index.php?cPath=35
Guest Posted October 21, 2005 Posted October 21, 2005 For the categories at the top of your page you can set the number to display per row in admin - Configuration>>Maximum Values>>Categories To List Per Row - the default is 3 For your new products module, open /includes/modules/new_products.php in an editor and change: $col ++; if ($col > 2) { $col = 0; $row ++; } } to: $col ++; if ($col > 1) { $col = 0; $row ++; } } Matti
Guest Posted October 21, 2005 Posted October 21, 2005 Thanks man. I'm getting a feel for it. Just takes a while to learn where everything is. Know what I mean? Appreciate it really. I'll help out where I can here.
Recommended Posts
Archived
This topic is now archived and is closed to further replies.