IF you copy the file:
/includes/templates/template_default/templates/tpl_product_info_display.php
to your templates and overrides directory:
/includes/templates/your_templates_dir/templates/tpl_product_info_display.php
You can edit the file and look for the code for the image:
PHP Code:
<!--bof Main Product Image -->
<?php
if (zen_not_null($products_image)) {
?>
<?php
/**
* display the main product image
*/
require($template->get_template_dir('/tpl_modules_main_product_image.php',DIR_WS_TEMPLATE, $current_page_base,'templates'). '/tpl_modules_main_product_image.php'); ?>
<?php
}
?>
<!--eof Main Product Image-->
You will see all of the code is delimited this way so you can rearrange things ...
The products_description is:
PHP Code:
<!--bof Product description -->
<?php if ($products_description != '') { ?>
<div id="productDescription" class="productGeneral biggerText"><?php echo stripslashes($products_description); ?></div>
<?php } ?>
<!--eof Product description -->
By moving these around you can place them where they better suit your site ...