I’m having a little difficulty with a CSS override on the blog page.
The idea is to have sub-headings (such as titles) on our web page in a different font and color than the body (content). We can almost get there by setting the font in Appearance > Customize > Typography > Headings; here we can change the typeface of <h2> and <h3> tags but not the color.
On a regular page the CSS override works just fine.
h2 {
color: #8C0C04;
font-weight: bold;
}
On the blog page, the very same code does not. Using the inspector on the browser I obtained the class and tried to override it that way but it still does not work.
.entry-title {
color: #8C0C04;
font-weight: bold;
}
Am I using the wrong CSS or does it not work on blog pages?
By the way, we are using GP Premium with both Typography and Blog plug-ins enabled.