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:
- Using CSS in Blogger’s Customizer
- 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
- Go to Blogger > Theme > Edit HTML.
- Find the closing
</head>
tag using Ctrl + F. - 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
- Go to Blogger > Theme > Customize.
- Select Advanced > Add CSS.
- Paste this:
/* Change the font of the comments to Gaegu */
.comment {
font-family: 'Gaegu', cursive;
font-size: 16px;
font-weight: 400; /* Regular */
}
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
AFTER
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