Page 1 of 1

Reduce space between rows

Posted: Sun Sep 16, 2012 8:57 am
by kjm306
Hi,
Where I have to make changes to reduce the space between rows in product listing page as seen in the screenshot.

Thanks in advance

Re: Reduce space between rows

Posted: Sun Sep 16, 2012 12:21 pm
by leo
So, you would like to remove product images?

Re: Reduce space between rows

Posted: Mon Sep 17, 2012 12:15 am
by kjm306
Yes. I have planned to sell electronic components like resistors,capacitors,transistors etc. So, I think, adding image for each component with different specification is difficult in this case.

Thank you

Re: Reduce space between rows

Posted: Mon Sep 17, 2012 12:41 am
by leo
You have to edit the catalog/template/default/shared/multiple_columns.tpl file.

Code: Select all

if (!$columns){
    $columns = 3;}
	$column_width = (int)(100-$columns)/$columns;
	if ($columns > 3){
	 $font_size = 9;
	 $button_font = 9;
	 $min_height = 220;
	} else {
         $font_size = 10;
	 $button_font = 11;
	 $min_height = 250;
	}
Change $min_height(s) to whatever you want.
You have to modify in default.css the .module_content min-height as well.

Re: Reduce space between rows

Posted: Mon Sep 17, 2012 3:46 am
by kjm306
Its working.Thank you very much! :)