Wednesday, September 1, 2010

Background image

As many of you know in Blogspot platform it's easy to change all
visual design elements from HTML/CSS mode (admin area) Ex: background
image and color, header, buttons, background image of the links,
widgets background etc. Or you could add your custom images in
different zones of your template/theme.
To do so, you need to know a little HTML/CSS and how to read XML file.
This is css code for backround image
body {
  color: #333;
  background: #f0f0f0 url(http:url of your image) repeat-x;

}
color- is the background color attributed in hex-color (hexazecimal
color) ex: #ffffff <- white  / #000000 black
repeat-x  - tells how to display the image (in this case, same image
in horizontal sequence )
repeat-y  - same but in vertical sequence
no-repeat- the image is not repeating itself
top center - the image is posted in top and the center of your window/
theme

0 comments:

Post a Comment