This is driving me nuts!
I created a folder structure for my template css and images. I went to Files>assets and created two new directories templates>css and templates/images. I then added my css file and my images to the relevant folders.
The template is connecting with the css file just fine. But the background images within my css do not show? I am testing this site locally.
This is the css I am puzzled over:
#banner{
width:990px;
height:270px;
background: url(/assets/templates/nutricompounds/images/banner.jpg) no-repeat red;}
The height, width and red color of the box show fine, but the image does not?
I have tried changing the first part to
url(../assets/
url(assets/
url(templates/
url(../templates/
url(/templates/
What the heck am I missing here? Why won’t this image show???
Thanks!