How to Change Post Body Font Size, Color & Style

You can customize post body font in any expect like color, size, style or family. First, you should know what is the default CSS code for post body and then we'll customize it according to our own taste. Go to Layout | Edit HTML and find this code:

The default code of posts!


.post {
margin:.5em 0 1.5em;
border-bottom:1px dotted $bordercolor;
padding-bottom:1.5em;
}

Understand the default code!


1- margin:.5em 0 1.5em; is defining spacing between post and other elements in the blog like sidebar and header.

2- border-bottom:1px dotted $bordercolor; it very descriptive. It creates a dotted border at the bottom of the post with width 1px.

3- padding-bottom:1.5em; causes some space between posts and other elements at the bottom. The other elements could be labels, comments or date.

Make changes in the default code!


Now, I've given you some idea about the post body style definitions. By default, the font properties are not defined specifically for posts but we can easily do this by applying some simple CSS techniques.

1- How to change font size in post body!

You need to add font-size:15px; property in the default CSS code:

.post {
margin:.5em 0 1.5em;
border-bottom:1px dotted $bordercolor;
padding-bottom:1.5em;
font-size:15px;
}

Tip: Try increasing or decreasing 15px to increase or decrease font size.

2- How to change font color in post body!

You need to add color:#FFFFFF; in the default definitions:

.post {
margin:.5em 0 1.5em;
border-bottom:1px dotted $bordercolor;
padding-bottom:1.5em;
color:#FFFFFF;
}

Tip: #FFFFFF is the hex code for white color, you can capture any color you see on your computer or on web and get the hex code of that color through a free utility ColorPic.

Remember: This property will not effect hyperlinks (?) in the post body, I'll tell you about hyperlinks customization later in this article.

3- How to change the font family in post body!

Font family means that you can control which font will be used to display post body. You can have Arial, Times New Roman, Georgia, Serif and many many more. So, you'll need to apply font-family:"Times New Roman",Georgia,Serif; property for this purpose.

.post {
margin:.5em 0 1.5em;
border-bottom:1px dotted $bordercolor;
padding-bottom:1.5em;
font-family:"Times New Roman",Georgia,Serif;
}

Tip: I've added 3 fonts in font-family:"Times New Roman",Georgia,Serif; property, why? Because my user might not have Times New Roman installed on his/her computer then the second font Georgia will be used and similarly Serif can also be used.

Tip: See following article about CSS font family properties for information.

http://www.w3schools.com/css/pr_font_font-family.asp

4- How to change the style of post body font!

Remember: You might not need this property but this is useful for better understanding of your fonts.

By style, I mean you can make your font italic through font-style:italic; property.

.post {
margin:.5em 0 1.5em;
border-bottom:1px dotted $bordercolor;
padding-bottom:1.5em;
font-style:italic;
}

Remember: If you'll not add this property in default definitions then your post body font will be displayed normal.

Tip: Blogger post editor provides an easy way to make specific part of text italic. When creating a post, select your text and click the i icon which is the second icon on toolbar.

How to apply these properties on hyperlinks in the post body!


Some of the above described properties will not effect hyperlinks (?) in the post body and there are no definitions in default Blogger CSS for hyperlinks (?) so lets add our own definitions.

This is the deafault code:

.post {
margin:.5em 0 1.5em;
border-bottom:1px dotted $bordercolor;
padding-bottom:1.5em;
}

Add some more juice in it:

.post {
margin:.5em 0 1.5em;
border-bottom:1px dotted $bordercolor;
padding-bottom:1.5em;
}
.post a {
color:#FF0000;
text-decoration:underline;
text-transform:uppercase;
}

Now, I'll explain all 3 properties added in .post a {} tag.

1- color:#FF0000; is the hex code for red color, you can hex code of some other color to change it.

2- text-decoration:underline; will make your post hyperlinks (?) underlined, you can change this to text-decoration:none; if you don't want to apply it.

3- text-transform:uppercase; will change your hyperlinks (?) to transform to uppercase. You can change it to text-transform:lowercase; if you want your hyperlinks to display in lowercase or you can change it to text-transform:none; to nullify this effect.

How to customize the hyperlinks for mouse over event (hover effect)!


You can also further customize the font appearance when mouse comes over your hyperlinks. For example you might want to change the color of your hyperlinks on mouse over or make it underlined or maybe change the font size.

This is our default CSS + hyperlinks CSS we added in the previous steps:

.post {
margin:.5em 0 1.5em;
border-bottom:1px dotted $bordercolor;
padding-bottom:1.5em;
}
.post a {
color:#FF0000;
text-decoration:underline;
text-transform:uppercase;
}

Add even more juice in it:

.post {
margin:.5em 0 1.5em;
border-bottom:1px dotted $bordercolor;
padding-bottom:1.5em;
}
.post a {
color:#FF0000;
text-decoration:underline;
text-transform:uppercase;
}

.post a:hover {
color:#0000FF;
text-decoration:none;
text-transform:lowercase;
}

Now, I'll explain some changes I've made.

Note: All the properties in .post a:hover {} will be visible only when you'll move mouse over the link.

1- The color will change to blue (#0000FF).

2- There will be no decoration of text. Previously, we applied text-decoration:underline; property to make our hyperlinks underlined but when mouse will come over, it will not be underlined.

3- On mouse over, our hyperlinks will become lowercase.

Tip: "On mouse over" is called "hover effect" in CSS references.

Before you leave!


I've tried my best to share my knowledge with you, if this article has really helped you then you can comment or tell other people about it through social networking. Any question, comment or suggestion will be greatly appreciated, thanks.

38 comments:

  1. Very nice explanation about css. Any new blogger can be benefited from your post.

    ReplyDelete
  2. Hello Bilal,
    Can you tell me how to do if I want the readers to see another text when the mouse move over the link?

    ReplyDelete
  3. @ iskander, you can't do it by normal CSS, so there might be a javascript out there which can help you to achieve this.
    By the way, if you any other website with this feature, please gimme the address, I'll have a look and try to help you!

    ReplyDelete
  4. Can the dotted border be changed to a line?

    ReplyDelete
  5. @ Mark, yes you can do this. For example, here is the code for dotted border:

    border-bottom:1px dotted #333;

    Just replace "dotted" with "solid" like this:

    border-bottom:1px solid #333;

    Now, you'll have a solid line of width 1px and color #333 (black).

    ReplyDelete
  6. Great stuff!
    I have issues with the spacing below picture, and I read that I had to change the "Padding-bottom"
    what is exactly the 1.5em value?
    Thanks

    .post {
    margin:.5em 0 1.5em;
    border-bottom:1px dotted $bordercolor;
    padding-bottom:1.5em;
    }

    ReplyDelete
  7. @ Me, "padding-bottom" value is defining distance between 2 posts, if you'll increase the "1.5em" to some higher value like "2em" then the next post will appear after some more distance.

    ReplyDelete
  8. So helpful for me when I want to make a few quick changes without learning HTML CSS or whatever- Thanks so much!

    ReplyDelete
  9. superb and easy explanation,thanks a lot

    ReplyDelete
  10. thank you very much for your explanations !

    ReplyDelete
  11. Hi i want to know how to change the post body color not the font please

    ReplyDelete
  12. Hi aldrix,

    Do you want to change the font color in post body?

    ReplyDelete
  13. Hi, How can you add a margin so the text is not hard against the edge of the post boarder? It is noticeable because I have a different colour background to the post background. Thanks

    ReplyDelete
  14. @ Annies Marlborough Ltd, I've just checked your blog and your post background and blog background are same so what's the real deal?

    ReplyDelete
  15. Hi, I wanted to have white as post back ground and the light tan as the blog back ground. When I tried I got a white box that was hard against the text - the width of the post - and it look awful. I want to try and get a margin setting so the words are away from the post edge. An ideas?

    Cheers

    ReplyDelete
  16. Hi,
    I'm trying to change my post background's colour, but I just can't do it! In the html code, there is a part in the post-body blockquote that says background: #transparent, and I thought it might be it, but seems like it isn't.

    Could you please help me?
    Thank you very much!

    ReplyDelete
  17. @ Annies Marlborough Ltd, yeah that can be done through a little 'padding'. Just gimme your blog address so that I can help you out!

    ReplyDelete
  18. @ Juliana., gimme your blog address please!

    ReplyDelete
  19. Hi again!

    My blog address is valhamepotassio.blogspot.com

    Thanks =]

    ReplyDelete
  20. @ Juliana, the background of your posts is actually an image:

    http://4.bp.blogspot.com/_hcF8ssiWKd4/SgUqwSVjlYI/AAAAAAAAAqE/XrXtOc1t750/s1600/tiredgirlbd.jpg

    Don't worry I can easily edit that image and then you can replace the current image with a new one. Just tell me which color you want to apply as post background!

    ReplyDelete
  21. Hi Bilal

    My Blog address is anniesnz.blogspot.com

    Thanks for the help

    ReplyDelete
  22. @ Annies Marlborough Ltd, go to Edit HTML and find the following code:

    #main-wrapper {
    width: 410px;
    float: left;
    word-wrap: break-word; /* fix for long text breaking sidebar float in IE */
    overflow: hidden; /* fix for long non-text content breaking IE sidebar float */
    }

    Then simply replace the above code with the following:

    #main-wrapper {
    width: 410px;
    float: $startSide;
    word-wrap: break-word; /* fix for long text breaking sidebar float in IE */
    overflow: hidden; /* fix for long non-text content breaking IE sidebar float */
    background: #fff;
    }

    .main { padding: 0 10px; }

    Click Preview button to see the changes. Now, you posts background will be white and the padding property will make sure that everything in posts has a little margin with the walls.

    ReplyDelete
  23. You are really helpful. God bless you!

    ReplyDelete
  24. Many thanks Bilal. This works well.

    ReplyDelete
  25. thank you very much for all the info!! I really needed the tip on how to change the dots with lines! Thank you again!

    ReplyDelete
  26. thanks alote it was very helpful

    ReplyDelete
  27. Thanks!!! I did change the font of my blog!!! Jeanette

    ReplyDelete
  28. i try to follow the steps but it doesnt work. how?

    ReplyDelete
  29. @ farawa khairuddin, which template are you using? Gimme your blog address!

    ReplyDelete
  30. Hi! I'm having problems changing the font size of my posts.. When I increase it, the line spacing increases rather than the font size itself.

    Also, how can I narrow the gap between the date and the post title?

    freeperiods.blogspot.com
    thank you!!

    ReplyDelete
  31. Thank you so much - this help me a lot. Finally!

    ReplyDelete
  32. Hi, i am unable to change the font size of my post body. It's the correct size but when i align it center via the button when creating a post in blogger and publish it, the fonts are automatically smaller than it's original! How do i change this?

    Thanks

    ReplyDelete
    Replies
    1. Hi CF!, you're using a custom Blogger template which would need manual editing.

      Delete
    2. Thank you for your reply!

      i have tried to manually edit this and the font size is correct but when i align my post to the center while i'm typing a post, it somehow overrides my templates code and turns out smaller! the most recent post is an example!

      do you have any idea how to override this?

      thanks!

      Delete
    3. Hi CF!, please email me your template file, I'll check it:

      levisinside0@gmail.com

      Delete

LinkWithin

Related Posts Plugin for WordPress, Blogger...