Posts: 202
Location: Santa Monica, CA
|
You need to tell the browser via CSS where to repeat, horizontal or vertical.
Your CSS should regarding the background image should look like this:
Code:
#col {
background-image: url('col bg.png') repeat-x;
}
PS: are you sure the url of your background image is correct? As far as I know you have to give a relative path to the image (if you are using an image that is stored with the other site info on the server).
|