Is there any way to go about moving the WooCommerce Product Description and Reviews section (in the accordion) to underneath the image on its own row? If you have a detailed long description, it seems like a lot of unnecessary white space to the left.
Comments
yes, this is possible. Please use below custom css and this will do what you need:
.woocommerce #content div.product div.summary, .woocommerce div.product div.summary, .woocommerce-page #content div.product div.summary, .woocommerce-page div.product div.summary { width: 98% !important; }But to remove "Add to cart" button, you need to use below css:.products .image_frame .image_wrapper .image_links.double a:first-child { display: none !important; }.products .image_frame .image_wrapper .image_links.double a { width: 100% !important; }
Thanks in advance.
Thanks for understanding!
Because I got a list on my shortdescription which refers to the product and I want another column underneath there for tabs etc.
I'm grateful for every help!
Hope we explained it well and now you understand how it works