Tuesday, September 22, 2015

How To Change Background,Font Size And Font Family Of Your Blog ?

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.



  1. How To Change Background ?
  2. How To Change Font-Size ?
  3. How To Change Font Family Of Your Blog ?
Font Size And 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....
 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
 .post {  
margin: 0;
background:#ccc;
}

Now again follow A and B steps...

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