Quote Originally Posted by sweettease View Post
Better yet... is it possible for me to leave the main content (image, title, price) where it is and move the product options and add to cart button up next to it?
In the file includes/templates/your_template_name/templates/tpl_product_info_display.php

Find this block of code and move it to after what you want to show above the tabs.

Code:
<?php 
//BOF :: Tabbed Products Pro ::
echo '<div id="tpptabBlock" style="display:none;">' . $tabData . '</div>';
//EOF :: Tabbed Products Pro ::
?>
For example, if you want the tabs to start after your product attributes, place it after you see

<!--eof Attributes Module-->

hope that helps!