› Rooms › General Divi › Blog heading color › Reply To: Blog heading color
16 August 2021 at 9:47 pm
#676
::
The titles on your front page are h2 links. You have CSS that says anchors are to be green (from the Divi stylesheet).
.et_color_shceme_green a { color: #7cc68d; }
The title on the individual blog post is an h1 heading, with no link. The color there is set in your customizer.
To change the heading link color on the front page, you can add something like this:
.et_pb_post .entry-title a {
color: #4f1964;
}