Searching out more info. Don't know if this is my issue or not:
But I don't have a clue where to do this suggested fix.
http://wcdocs.woothemes.com/codex/third-party-custom-theme-compatibility/
Where you may run into problems is when the default WooCommerce content wrappers do not match your chosen theme’s. This will manifest itself by breaking your layout on WooCommerce pages and shifting your sidebars into incorrect positions.
Using hooks
The hook method is more involved that using woocommerce_content, but its more flexible. This is similar to the method we use when creating our themes.
First unhook the WooCommerce wrappers;
remove_action( 'woocommerce_before_main_content', 'woocommerce_output_content_wrapper', 10);
remove_action( 'woocommerce_after_main_content', 'woocommerce_output_content_wrapper_end', 10);
Then hook in your own;
add_action('woocommerce_before_main_content', create_function('', 'echo "<section id=\"main\">";'), 10);
add_action('woocommerce_after_main_content', create_function('', 'echo "</section>";'), 10);
Making sure that the markup matches that of your theme. If you’re unsure of which classes or ID’s to use take a look at page.php for a guide.