How to Change the Comments Font on Blogger

Easy tutorial on how to change the comments font on blogger. Image that shows the outcome.

If you're like me and love to make your blog feel extra unique, you're in the right place! I’m so excited to show you how to change the comments font on Blogger. It's such a cute way to give your blog a little personal touch. Changing the font can really freshen up the look of your blog, and it's easier than you might think. 




There are two ways to do it:


  1. Using CSS in Blogger’s Customizer 
  2. Editing the HTML in the Blog Template 

Changing the Font of Comments 

To change the font of the comment text, follow these steps. I'll use gaegu as the font of choice, but you can replace it with any font you like!


Option 1: HTML for Comments

This will change the font of the comment itself.

Steps

  1. Go to Blogger > Theme > Edit HTML.
  2. Find the closing </head> tag using Ctrl + F.
  3. Add this just before </head>:



<style>
/* Change the font of the comments */
.comment {
    font-family: 'Gaegu', cursive;
    font-size: 16px;
}
</style>
  


RELATED: How to Create a Custom Anime Cursor for Blogger


Option 2: CSS for Comments

This method adds the style for the comment text using the CSS customizer.

Steps

  1. Go to Blogger > Theme > Customize.
  2. Select Advanced > Add CSS.
  3. Paste this:


/* Change the font of the comments to Gaegu */
.comment {
    font-family: 'Gaegu', cursive;
    font-size: 16px;
    font-weight: 400; /* Regular */
}
  






Change the font of the comments section on your Blogger blog for a unique style.




Changing the font of comments on your Blogger blog is so simple and can making it feel so you!! Don't forget, you can always play with different fonts and sizes to make your blog even more special. 



BEFORE

View the default comments font on your Blogger blog before making changes.



AFTER


See the updated comments font on your Blogger blog after making changes.



Good luck with your blog customization! If you need more help or want to make any other little changes, feel free to ask! 

0 comments