Yikes, apologies for that! Seems as though we missed out the styling for this. Here is how it’s meant to look, which I’ve just fixed for the update that’s coming tonight – http://cl.ly/Sbyq
2) Hmm.. Could probably sort something for this. If you’re using the provided child theme, then try adding the following to the functions.php file:
function dante_product_tabs_override() {
add_action( 'woocommerce_after_single_product_summary', 'woocommerce_output_product_data_tabs', 10);
remove_action( 'woocommerce_single_product_summary', 'woocommerce_output_product_data_tabs', 35);
}
add_action('init', 'dante_product_tabs_override', 5);
– Ed