Resolved
Its funny how I can never figure something out until AFTER I have posted on a forum...
How to:
Admin Panel>configuration>images>Product Info - Number of Additional Images per Row = change to 1
Copy from template_default/templates these two files into YOUR_THEME/templates:
tpl_modules_main_product_image.php
tpl_product_info_display.php
open all three in your text editor
In tpl_product_info_display.php
find - around line 157:
Code:
<!--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 -->
copy it and then comment it out like so:
Code:
<!--bof Additional Product Images ******** moved to templates/YOUR_TEMPLATE/template/tpl_modules_main_product_image.php *******-->
<?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 -->
Go to the tpl_modules_main_product_image.php that you opened:
at the end of the page you will find this:
paste the copied code in between those two lines so it will look like this:
Code:
</noscript>
<!--bof Additional Product Images -->
<br class="clearBoth" />
<?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 -->
</div>
add this style to your style sheet:
Code:
#productMainImage {
float:left;
}

If you dont want your text floating around the image, just dont put the style there.
You should be all done. Make sure to test these files on your own template and do not overwrite the default template.
Clint