For every page: Home Accessories, Seasonal, Gifts, Guest Products etc - I would like a different colour background for the entirety of the screen, including header.
I cannot work out how to do this and I don’t understand what any of the codes mean.
I would really appreciate some help on this so I can get it sorted.
Do you know about shopify liquid code? You need to add code in the body tag then you can see different name in the body like page name then you can add code according to the page.
Like your website background color coming with “.gradient” class. When you add condition in the body tag then you can add css according to the class like
You want pink color on “Seasonal” page then you need class in body tag any class name.
body.seasonal.gradient{
background-image: none;
background-color: #pink;
}