Modify the order in which elements are displayed in the Product Info page by editing tpl_product_info_display.php ...
Find the element:-
PHP Code:
<!--bof Product URL -->
<?php
if (zen_not_null($products_url)) {
if ($flag_show_product_info_url == 1) {
?>
<p id="productInfoLink" class="productGeneral centeredContent"><?php echo sprintf(TEXT_MORE_INFORMATION, zen_href_link(FILENAME_REDIRECT, 'action=url&goto=' . urlencode($products_url), 'NONSSL', true, false)); ?></p>
<?php
} // $flag_show_product_info_url
}
?>
<!--eof Product URL -->
... and CUT / PASTE it in a different part of the file - higher up...
Each of the elements is "sectioned" by these html commented describers:
<!--bof XXXXXXXX -->
... some code here...
<!--eof XXXXXXXX -->
... so make sure you keep them all separate, but shifting them around changes the display order on the page.