New Zenner
- Join Date:
- Jan 2008
- Posts:
- 9
- Plugin Contributions:
- 0
body background image
hi can someone direct me to a good post on changing the main body background to an image? i'm sure it exists already, but i cant find it
Views: 2,388
New Zenner
hi can someone direct me to a good post on changing the main body background to an image? i'm sure it exists already, but i cant find it
Black Belt
In your stylesheet (/includes/templates/your_template/css/stylesheet.css) find the body {} declaration near the top and add to it
background-image: url(../images/yourbg.gif);
Save the image file as
/includes/templates/your_template/images/yourbg.gif
If you want the image not to repeat or to repeat horizontally add
background-repeat: no-repeat;
or
background-repeat: repeat-x;
If you want the image centered add one of
background-position: center center;
background-position: top center;
Other possibilities exist also...
Tell staff why this post should be reviewed.