I have a folder called projects on my desktop and inside the folder I have a file called index.html and a folder called images containing all the images. When I try to call the background: url(“images/shadow1.PNG”) repeat-y; it doesnt seem to work for some reason, anyone have any ideas why ?
If I put the documents on my desktop the index and images folder and try running the background: url(shadow1.PNG) repeat-y; it works just fine.
Hope that made sense, any information and code examples on how to fix this would be great.
Thanks!
in css file change the
background: url("images/shadow1.PNG")tobackground: url("../images/shadow1.PNG")It has to return to the root folder (projects) using
../and then enter the image folder to find the image.