Comments box

Home Forums WordPress Themes – Premium Encounters Comments box

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #13840
    Julie
    Participant

    Hi

    Just wondering if there is a way to change the background colour of the comments boxes? Currently default to grey, would like to change, but cannot find it in the customise colours list

    Thanks,

    Julie

    #13841
    Sushil Adhikari
    Moderator

    Unfortunately there is no theme option for that so you will need to make a modification to the theme. Preferably with a child theme, or if you are using Jetpack, it has a nice css editor. But the theme styling for this is in the style.css file around line 1281 and looks like this:

    [code type=css]
    header.comment-meta {
    margin-bottom: 14px;
    background-color: #f3f4f4;
    font-style: italic;
    }

    So when you make an override for header.comment-meta, you just need to copy and paste the above but just have the background colour like this:

    [code type=css]
    header.comment-meta {
    background-color: #f3f4f4;
    }

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