Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Product images do not fit


Guest

Recommended Posts

Posted

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

Posted

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.

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...