Quote Originally Posted by xt0rt View Post
I'd like to do this as well. I have a gradient background that I would like to repeat horizontally throughout the site. Here's what I came up with in stylesheet.css, to no avail :

Code:
body {
	background:#0c1f45; /* main site background color, blue default */
	background-image: url(../images/body-bg.gif);
	background-repeat: repeat-x;
Any suggestions?
Where did you upload the image? Did you upload it in includes/templates/YOUR_TEMPLATE/images?

Try entering the image code lie this:
background:url("../images/body-bg.gif");

(with the quotes - IE likes it that way)