How To Change Blogger Background
1.Login to your blogger dashboard--> desing- -> Edit HTML
2.Scroll down to where you see body{or} section.
body{
background:#141414; margin:0;
color:#000000;
font: x-small "Trebuchet MS", Trebuchet, Verdana, Sans-serif;
font-size: small; text-align:
center;}
Note: To change background colour background:#141414 and do want more colour check them outhere
Add Background Image: background: url(LINK);
Repeat the image horizontally (left to right):
repeat-x
Repeat the image vertically (top to bottom):
repeat-y
No image repeat:
no-repeat
Position image to the left or right:
left (for left side)
right (for right side)
Position image to center of screen:
center
Fix image on background (to prevent image from moving when scrolling):
fixed
Now your complete background code look at the example below:
background: #141414 url(http://bloggertricksandtoolz/image.jpg) repeat-x fixed;
I hope you'll understand it..
No comments:
Post a Comment