Change blogger background color

Change blogger background color

Find EDIT blogger template using HTML editor
Actual code for your background color

If you look the actual code of your template then you see there is a linebackground: $bgColor;. This line is actually represented for the background color. See there is a field $bgColor which is responsible for defining color. You may choose any color value here. So, the actual code segment for background color looks like the following.


?
1
2
3
4
5
6
7
8
9
10
body{
    background: $bgColor;
    margin: 0;
    padding: 0px;
    font: x-small Verdana, Arial;
    text-align: center;
    color: $textColor;
    font-size: small;
    font-size: small;
}
Look, the second line of the above code. It's the actual line which define the color of your template color.

Change the color of your blog template
Now, we want to change color of our Minima template. Let we want to change the background color to the right hand side rectangle color. To change any color, we have to replace$bgColor field to any color value. For color value of the right-hand side rectangle is #FFCCFF. Now change the code with that value. After changing the color value the code will look like the following:
?
1
2
3
4
5
6
7
8
9
10
body{
    background: #FFCCFF;
    margin: 0;
    padding: 0px;
    font: x-small Verdana, Arial;
    text-align: center;
    color: $textColor;
    font-size:small;
    font-size: small;
}
Look the above code's second line. We just change the second line of the code. After changing that line, your template background color will be changed.

Note:
You may choose any color. To see the color value of several color, you may visit the following link:













0 comments:

Post a Comment

 
Worlds best tips and tricks website