On Zencart 1.3.8 when I add two or more additional images they display in a column. How can I have them displaied in a row one next each other?
Thanks for your help
On Zencart 1.3.8 when I add two or more additional images they display in a column. How can I have them displaied in a row one next each other?
Thanks for your help
Hi Susi,
A web address would help to see what you mean.
Rottie
Don't know if this can help.. my tpl-modules-additional images reads
require(DIR_WS_MODULES . zen_get_module_directory('additional_images.php'));
?>
<?php
if ($flag_show_product_info_additional_images != 0 && $num_images > 0) {
?>
<div id="productAdditionalImages">
<?php
require($template->get_template_dir('tpl_columnar_display.php',DIR_WS_TEMPLATE, $current_page_base,'common'). '/tpl_columnar_display.php'); ?>
</div>
<?php
}
?>
Is that "columnar_display.php the problem? How do I change that?
you have inline style that is set to 100%
<div style="width: 100%;" class="additionalImages centeredContent back">
change this width to 35%
you can locate this by using Developers tool kit and searching for additionalImages keyword
have you checked the admin configuration??
Configuration -> Images -> Product Info - Number of Additional Images per Row
~Steve~
Thanks Steve... you suggestion worked great... such a silly modification, but I was not able to figure it out.
Many thanks to all you guys for your help