
Originally Posted by
coolbuys
I used 4 products per row on my new products. but the descriptions don't lay out properly. I noticed style="width:25%". I think it should be width:98%
<td width="25%" align="center" valign="top"><div class="centerBoxContentsNew centeredContent" style="width:25%;">
Can anyone please help?
http://coolbuydirect.com/c/index.php?main_page=
thank you
Hi!
open up includes/templates/cherry_zen/common/tpl_columnar_display.php and change this chunk:
Code:
$r_params = str_replace("50", "98", $r_params);
$r_params = str_replace("33", "98", $r_params);
$col_width = str_replace("50", "48", $col_width);
$col_width = str_replace("33", "31", $col_width);
to this:
Code:
$r_params = str_replace("50", "98", $r_params);
$r_params = str_replace("33", "98", $r_params);
$r_params = str_replace("25", "98", $r_params);
$col_width = str_replace("50", "48", $col_width);
$col_width = str_replace("33", "31", $col_width);
$col_width = str_replace("25", "23", $col_width);
Bookmarks