I’m using a dark blue background on the main content of my site. However, for my blog, I would like a white background with dark text.
How can I change the background color on the Blog Single Post View without affecting or changing the color of the header or footer (I still want the header and footer to have the dark blue bg)
Hey!
You can try this in the Quick CSS field:
.single #main .main_color {
background: #ffffff;
color: black;
}
Cheers!
Ismael
Worked great! Thanks so much!