
Originally Posted by
jheir16
Sorry one last thing....all the products are now aligning vertical center... do you know how to make it become vertical align top so that all the images line up?
Edit the includes/templates/YOUR_TEMPLATE/common/tpl_columnar_display.php file
find:
Code:
echo '<td width="'. $col_width .'%" align="center"><div' . $r_params . '>' . $list_box_contents[$row][$col]['text'] . '</div></td>' . "\n";
replace with
Code:
echo '<td width="'. $col_width .'%" align="center" valign="top"><div' . $r_params . '>' . $list_box_contents[$row][$col]['text'] . '</div></td>' . "\n";