I have a style sheet where I include background images.
background: url(../Images/myImage.png);
problem is, pages from different directorie
/Images/myImage.png
this has to be in root of your domain/subdomain
http://website.to/Images/myImage.png
and it will work
However, I think it would work like this, too
style.css:
body{ background: url(../images/yourimage.png); }