Need to remove sidebar in Woo-commerce

Hello,

Im using xtheme and have added the Woocommerce plugin. On the Shop page of Woo, there is a side bar with categories listed that I want to go away. I want to have a full screen without the sidebars and can’t figure out how to hide them.

Any help is greatly appreciated.

Hi @IRGmarketing,

Thank you for reaching out to us. To remove the sidebar on the Shop page and make the page full width, add the following code in the Theme Options > CSS:

.woocommerce.archive .x-sidebar {
    display: none;
}
.woocommerce.archive .x-main {
    width: 100%;
}

Here are some related links for further reading, this could help you in finding and implementing some CSS fixes:

Don’t forget to clear all caches including your browser’s cache after adding the code. Let us know how this goes!

That worked! Thank you so much!

You are most welcome. :slight_smile:

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.