I have a style sheet where I include background images.
background: url(../Images/myImage.png);
problem is, pages from different directorie
For example your directory is like this:
Desktop > ProjectFolder > index.html css > style.css images > img.png
You are at your style.css and you want to use img.png as a background-image, use this:
url("../images/img.png")
Works for me!