On some users request I have started a series of Blogger Basics.In this tutorials I will post tutorials about blogger basics for new bloggers.These tutorials will surely helps the new bloggers to improve design of their blog.Today we will see How to change background and font size of blog.I have divided this post in two parts.
- How To Change Background ?
- How To Change Font-Size ?
- How To Change Font Family Of Your Blog ?
1.How To Change Background Of Your Blog ?
- Go to Bogger Dashboard > Design > Edit HTML.
- Now find for this tag
Main Code
body {
color: #000000;
background:#FFFFFF;
font-size:13px;
font-family:Verdana;
}
A.Use Hex Color As Background.
If you want to change background color then find this line background:#FFFFFF;and replace it with any hex color code as you wish
B.Use Image As An Background.
If you want to use Image as an background the again find this in main code background:#FFFFFF; line in above code and replace it with below below....
If you want to change background color then find this line background:#FFFFFF;and replace it with any hex color code as you wish
B.Use Image As An Background.
If you want to use Image as an background the again find this in main code background:#FFFFFF; line in above code and replace it with below below....
background: url(YOUR IMAGE URL);background-repeat: repeat;
- Now replace YOUR IMAGE URL with your background image URL.
3.To Change Background Of Post
To change background of post fin this code
To change background of post fin this code
.post {
margin: 0;
background:#ccc;
}
Now again follow A and B steps...
Now find this code in Main Code and replace font-size:13px; and change it as you wish
How To Change Font Size Of Blog ?
Now find this code in Main Code and replace font-size:13px; and change it as you wish
Change Font Family Of Your Blog
If you wish too change font of your blog then find this line font-family:Verdana; in main code and replace font name with any other font name as you wish.....
No comments:
Post a Comment