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
Bookmarks