WooCommerce Page Layout/Wrapper color

Hello,

I am trying to get my shop page (called “Wheels”) for WooCommerce to use a left sidebar instead of a right sidebar. For some reason WooCommerce does not listen to the page layout that I select on my Wheels page.

Also, my website uses light grey wrappers, but on the Wheels page WooCommerce is using white wrappers for both categories page and products page. I would like to change it to grey so that it matches the rest of the website. Thanks!

WooCommerce is slightly different form the rest of the theme. It will only “listen” to layout set via Theme Options - Layout Options.

If the rest of the theme uses left sidebar, then it shouldn’t be a problem.

To change background for WooCommerce pages as well you can add this to Theme Options - Other - Custom CSS

#content-woocommerce {
    background: #C6C6C6;
}

Aigars, you rock! Both solutions worked. :slight_smile:

Thanks again!