Rooms General Divi Blog heading color Reply To: Blog heading color

#676
Terry Hale
Keymaster
    @mizagorn
    Up
    0
    Down
    ::

    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;
    }