Sample theme: https://martfury03.magebig.com/
I need on category page: https://martfury03.magebig.com/consumer-electric.html
Change bg color.
So I add custom css change code:
.page-wrapper {
background: black;
}
But when I save this custom css, then the color on the home page will also change, the color on the product card, the color in the shopping cart, etc.
(naturally because this element .page-wrapper is present on all pages)
and here I have a question,
(I cannot interfere with .phtml files to rename e.g. .page-wrapper-2 on category page.
- Is there any other way to only apply a color changes to category page example via pure css code? (so that it has no confilict on other pages)?
