Different Background Color on Woocommerce Shop page

Hi there,

I want a different background color (white) on my woocommerce shop page (http://www.peggys-hundemoden.de/shop/), but ONLY on the shop page. The background pattern should stay as it is on the product pages, check out and so on.

I tried

body.woocommerce .site {
background-color: #ffff;
}

But this changes the background on ALL Woocommerce affiliated sites. What CSS do I have to add to change ONLY the shop page to white background?

Thanks for helping out

Kathrin

Hello Kathrin,

Thanks for writing in!

You will need to use this code instead to change the background color of the shop page:

body.woocommerce.archive .site {
  background-color: #ffff;
}

Hope this helps.

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