Blog "Comments" text. Change size?

Hello!

I’m wondering if it’s possible to change the size of the “Comments” text to the same size as the “Leave a Reply” text below.

Also, I would like to change the size of the text of the comment itself to match the size of my blog’s main text.

I took a picture to make my question easier to understand. I hope my wording is not too confusing.

Thank you so much for your help!
-Nadia

Hi Nadia,

Some custom CSS will be need for this. Please try this code in the Global CSS:

.h-comments-title {
    font-size: 20px;
}

.x-comment-content {
    font-size: 16px;
}

.comment-reply-title {
    font-size: 18px;
}

Please feel free to change the font size values accordingly.

Here are some related links for further reading:

Hope this helps.

Thank you! The first two worked. This one didn’t seem to change anything:

.comment-reply-title {
font-size: 18px;
}

But I was able to change the font size of the titles and comment text.
Thank you very much :slight_smile:

Hi Nadia,

Thanks for confirming! Glad the first two worked for you. Try this one for the “Leave a Reply” text.

#reply-title {
  font-size: 18px;
}

If that doesn’t work, it might be a conflict with other styles on your site. If you provide a link to your site we could advise further in that case.

That code worked! Thanks so much :slight_smile:

You’re most welcome, Nadia. Have a great day!

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