Blog Comment section styling for new commenters

Dear Support Team,

I am styling the comments section of my blog (https://2cameras1bucketlist.com), and I’ve got troubles finding the proper selector to target CSS font changes for the elements in the picture below, that are visible only when the visitor is not logged in (check this blog post, for example https://www.2cameras1bucketlist.com/beautiful-south-africa/).

Would you be able to help? What would be the selectors for each of these elements?

Thank you guys for your help!

David

Hey David,

Thanks for writing in!

To figure out the selectors, I would highly recommend that you use the Chrome DevTools. This will allow you to inspect the page element and see the class selectors:

The following class selectors and element ID are the following:

.agree-comment-policy {
  // your styling here
}

#comment {
  // your styling here
}

#author {
  // your styling here
}

#email {
  // your styling here
}

#url {
  // your styling here
}

.cnns-comment-subscription {
  // your styling here
}

Hope this helps.

Hi Ruel and Team,

Thank you very much for your help and suggestion.

Your help is always appreciated

Regards,

David

You’re welcome, David.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.