Budgee Bare:
Hello from the Great Smokey Mountains
I am using Image Handler 2 on my website and I like it a lot.
http://www.groove-emart.com
The problem that I am having is when I upload more than one additional image the 2 images sit side by side on the product page. :no:
To help you understand what I mean check out this product page from my website. http://groove-emart.com/index.php?main_page=product_info&cPath=4108_4118&products_id=70983
Can you see the two images just below "Please Choose Size. I want to spread those images apart.
How do I do that?
Thank you in advanced
David Groover
Groove-eMart.Com
I think thats a theme issue, but even if it's not you can go into your template folder using FTP and edit this file, tpl_product_info_display.php - if its not located in your template theme then copy the one from template default into your themes template folder to override that one.
Once in tpl_product_info_display.php edit the lumps of code to display the page as you wish, make a backup file first so you can just upload the old file should you make a mistake.
Look for <!--bof Additional Product Images -->
<?php
/**
* display the products additional images
*/
require($template->get_template_dir('/tpl_modules_additional_images.php',DIR_WS_TEMPLATE, $current_page_base,'templates'). '/tpl_modules_additional_images.php'); ?>
<!--eof Additional Product Images -->
As an experiment try moving that code to just above <!--bof Product description -->
That should give you an idea of what you can do with the additional images on the page, you can then experiment with other placements, remember to make a backup of the file you are editing though just in case you mess up.
You can also space them apart using old fashioned html or add line breaks etc etc.
Location to file - your store name/includes/templates/your theme/templates/tpl_product_info_display.php
or your store name/includes/templates/template default/templates/tpl_product_info_display.php