Remove the grey line between the main content and sidebar on WooCommerce single product, cart, and checkout pages and also make the pages fullwidth.
Notes
Alternatively you could create templates for all WooCommerce pages using Divi’s theme builder, like a single product template.
CSS Code
[css] /*** REMOVE SIDEBAR LINE ON SINGLE PRODUCT PAGE ***/ .woocommerce-page #main-content .container:before { content: none; } .woocommerce-page #left-area { padding-right: 0; width: 100%; } [/css]
0 Comments