I have my images in the same folder as my html files, and in the css it’s formatted as background-image: url(“sun.JPG”) ;
But for some reason it won’t load on my website?
Any help?
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
Somehow it started working, think it was because I didnt update the css file properly and it still had the filename as sun.jpg instead of sun.JPG
The URL is relative to the location of the CSS file. Are the images stored in the same directory as your CSS files? If not, you’ll have to either change the path to e.g. …/sun.JPG or move the images to the same directory as the CSS files.