Hi guys,
Just trying to slipstream my website files and folders.
I have the following structure
includes folder which has:
includes/images
includes/css
includes/scripts
in my screen.css file, I have a format background which points to an image in the images folder.
In the CSS file, I have tried:
but neither of those work. It works if I move the images folder to within the CSS folder (i.e. includes/css/images)
How do I resolve this?
Thanks
Just trying to slipstream my website files and folders.
I have the following structure
includes folder which has:
includes/images
includes/css
includes/scripts
in my screen.css file, I have a format background which points to an image in the images folder.
In the CSS file, I have tried:
Code:
background: #ccc url(../images/navseperate.gif) no-repeat top right;
background: #ccc url(includes/images/navseperate.gif) no-repeat top right;
but neither of those work. It works if I move the images folder to within the CSS folder (i.e. includes/css/images)
How do I resolve this?
Thanks