You need to modify the product info display file.
\includes\templates\YOUR_TEMPLATE\templates\tpl_product_info_display.php
The original can be found /includes/templates/template_default/templates
You will find that all the display elements are neatly grouped together in this file. Each group starts with a BOF and endig with an EOF comment.
Example:
PHP Code:
<!--bof free ship icon -->
<?php if(zen_get_product_is_always_free_shipping($products_id_current) && $flag_show_product_info_free_shipping) { ?>
<div id="freeShippingIcon"><?php echo TEXT_PRODUCT_FREE_SHIPPING_ICON; ?></div>
<?php } ?>
<!--eof free ship icon -->
Make sure you select the complete group and move above or below any other group to change your product info display page.