How can I change the color of the paragraph/heading text on only my blog page and blog posts? The majority of my website has dark or black backgrounds so my text and heading color is set to white. But on my blog, the background is white, so I want the text to be black.
I have tried using CSS to change it (pasted below), but it’s not working for the following reasons:
- It shows up correctly when I’m using cornerstone, but when I leave cornerstone, the changes are no longer visible. I tried using the !important tag on each of them, but it also didn’t work.
- I don’t think this will also edit the posts themselves, and I need a way to change them too.
- It affects the text logo in the nav bar, which I don’t want.
p {
color: black;
}
h1 {
color: black ;
}
h2 {
color: black ;
}
h3 {
color: black ;
}
h4 {
color: black;
}
h5 {
color: black;
}
h6 {
color: black;
}
a {
color: black;
}
a:link {
color: black;
}
a:visited {
color: gray ;
}
a:hover {
color: gray ;
}
a:active {
color: gray ;
}
