The default code of posts!
.post {
margin:.5em 0 1.5em;
border-bottom:1px dotted $bordercolor;
padding-bottom:1.5em;
}
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;
}
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;
}
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;
}
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;
}
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;
}
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;
}
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;
}
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;
}
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.
Very nice explanation about css. Any new blogger can be benefited from your post.
ReplyDeleteHello Bilal,
ReplyDeleteCan you tell me how to do if I want the readers to see another text when the mouse move over the link?
@ iskander, you can't do it by normal CSS, so there might be a javascript out there which can help you to achieve this.
ReplyDeleteBy the way, if you any other website with this feature, please gimme the address, I'll have a look and try to help you!
Can the dotted border be changed to a line?
ReplyDelete@ Mark, yes you can do this. For example, here is the code for dotted border:
ReplyDeleteborder-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).
Great stuff!
ReplyDeleteI 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;
}
@ 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.
ReplyDeleteSo helpful for me when I want to make a few quick changes without learning HTML CSS or whatever- Thanks so much!
ReplyDeletesuperb and easy explanation,thanks a lot
ReplyDeletethank you very much for your explanations !
ReplyDeletethanks for all this
ReplyDeletereally it's a naic
ReplyDeletegreat tips
ReplyDeleteThanks a lot
Hi i want to know how to change the post body color not the font please
ReplyDeleteHi aldrix,
ReplyDeleteDo you want to change the font color in post body?
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@ Annies Marlborough Ltd, I've just checked your blog and your post background and blog background are same so what's the real deal?
ReplyDeleteHi, 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?
ReplyDeleteCheers
Hi,
ReplyDeleteI'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!
@ 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@ Juliana., gimme your blog address please!
ReplyDeleteHi again!
ReplyDeleteMy blog address is valhamepotassio.blogspot.com
Thanks =]
@ Juliana, the background of your posts is actually an image:
ReplyDeletehttp://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!
Hi Bilal
ReplyDeleteMy Blog address is anniesnz.blogspot.com
Thanks for the help
@ Annies Marlborough Ltd, go to Edit HTML and find the following code:
ReplyDelete#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.
You are really helpful. God bless you!
ReplyDeleteMany thanks Bilal. This works well.
ReplyDeletethank you very much for all the info!! I really needed the tip on how to change the dots with lines! Thank you again!
ReplyDeletethanks alote it was very helpful
ReplyDeleteThanks!!! I did change the font of my blog!!! Jeanette
ReplyDeletei try to follow the steps but it doesnt work. how?
ReplyDelete@ farawa khairuddin, which template are you using? Gimme your blog address!
ReplyDeleteHi! 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.
ReplyDeleteAlso, how can I narrow the gap between the date and the post title?
freeperiods.blogspot.com
thank you!!
Thank you so much - this help me a lot. Finally!
ReplyDeleteHi, 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?
ReplyDeleteThanks
Hi CF!, you're using a custom Blogger template which would need manual editing.
DeleteThank you for your reply!
Deletei 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!
Hi CF!, please email me your template file, I'll check it:
Deletelevisinside0@gmail.com