Buy me a coffee

Product Category Page Background

Suppose you have 3 product categories: Bike, Brand, Design
You neet to set different background color on each page

1d3818cb5ae3fdbda4f2 Min

You can use this code to Website Tools > Custom CSS

html:has(meta[content*="Bike"]) .section-background {
    background-color: #f1f !important;
}
html:has(meta[content*="Design"]) .section-background {
    background-color: red !important;
}
html:has(meta[content*="Brand"]) .section-background {
    background-color: #f1f1f1 !important;
}

F1fa0447406fe731be7e Min

Result
Bike category page

B147cec28bea2cb475fb Min

Brand category page

Ea1ca722e20a45541c1b Min

Design category page

E3207ff935d1928fcbc0 Min