Site logo

[Resolved] Highlight comment by post author

Home Forums Support [Resolved] Highlight comment by post author

Home Forums Support Highlight comment by post author

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #224467
    David

    When a post author comments on his/her post I want to make them stand out from all other comments by adding a background colour. I’m using the following to achieve this:

    .bypostauthor .comment-content{background:#EDF8FF;}

    The only problem is, that when somebody else posts a reply to one of the author’s comments, that reply also gets the same background colour.

    Any idea how I can stop this happening?

    #224522
    Tom
    Lead Developer
    Lead Developer

    Give something like this a try:

    .comment-author-admin > .comment-body > .comment-content {
        background: #EDF8FF;
    }
    #224574
    David

    Thanks Tom, I managed to get it working with a small change to your code:

    .bypostauthor > .comment-body > .comment-content {
        background: #EDF8FF;
    }
    #224684
    Tom
    Lead Developer
    Lead Developer

    Awesome, glad you got it working 🙂

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.