It's not quite as simple as moving code in tpl_product_info_display.php, but you can't accomplish what you want until you do move the code.
What is holding the attributes below the image is the <br class="clearBoth" /> after the description.
In your tpl_product_info_display.php, find this
PHP Code:
<!--eof Product description -->
<br class="clearBoth" />
<!--bof Add to Cart Box -->
and delete the class="clearBoth".
Then move the <!--bof Attributes Module --> code block up to get this:
PHP Code:
<!--eof Product description -->
<br />
<!--bof Attributes Module -->
...
<!--eof Attributes Module -->
<!--bof Add to Cart Box -->
You will probably have to remove some class="clearBoth" from lines in
/includes/templates/your_template/templates/tpl_modules_attributes.php so that lower lines of the attributes will also come up under the description.
Bookmarks