Zen Cart Logo
Forums / Templates, Stylesheets, Page Layout / body background image

body background image

Locked

Views: 2,388

Results 1 to 2 of 2
This thread is locked. New replies are disabled.
10 Mar 2008, 4:54 AM
#1
jaatendi avatar

jaatendi

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

10 Mar 2008, 5:14 AM
#2
gjh42 avatar

gjh42

Black Belt

Join Date:
Jul 2005
Location:
Upstate NY
Posts:
21,876
Plugin Contributions:
8

Re: body background image

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