• gizmo1990

    (@gizmo1990)


    Does anyone know where I can change the color of the ‘title’ of comments made on blog posts? Where it says ‘One thought on *blog title*’ It’s a dark grey currently and I’d like to be able to change it.

    Also is there a way to change the color of commenters names too? They’re the same default grey and I’d like to change their global color.

    Hope you can help.

Viewing 3 replies - 1 through 3 (of 3 total)
  • awanrmb

    (@awanrmb)

    Hi,

    Here is the CSS code to change the comment title color:

    h4.comment-title {
        color: red;
    }

    And this is to change the commenters name color:

    .comment-meta b.fn a {
        color: red;
    }

    Put the code in above into customize > additional CSS

    Thread Starter gizmo1990

    (@gizmo1990)

    @awanrmb Thanks awanrmb, the comment title works great. Unfortunately, the commenters name code doesn’t seem to have any effect? Commenters names still appear grey. Are you sure it’s correct? Could there be some other code required?

    awanrmb

    (@awanrmb)

    Hi,

    Please try this code instead:

    .comments-area a.url {
        color: red;
    }
Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Change color of blog posts ‘comment title’ One thought on etc’ is closed to new replies.