Some Basics Trick For Blogger.Like: How To Change Background,Font Size And Font Family Of Your Blog etc..




Today I am going to share with all my Reader Some Basics Trick for Blogger. Like: How To Change Background,Font Size And Font Family Of Your Blog etc..



  1.  How To Change Background ?

  2.  How To Change Font-Size ?

  3.  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 you can use our Hex Color Code Generator.

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.
C.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...

2. 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

3. 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.....

To Change Font Color ?


Find this line color: #000000; in main code to change color of font and replace it with any Hex color code you can use  Hex Color Code Generator  

You may like these posts