Posts: 3,621
Name: Thierry
Location: I'm the uber Spaminator !
|
You use a relative path in your CSS rule, so, are you sure the file exists relatively from the current path ?
Deeper explaination:
you have an images directory in the root folder.
If you access a page at the root level, the browser will find the file.
But if you are in a subfolder, the browser will try to look for "subfolder/images/file.jpg", and that could be your problem.
And as a reminder:
Code:
/images/file.jpg ==> The file named "file.jpg", in a folder placed on the site root level
images/file.jpg ==> The file named "file.jpg" placed in a subfolder named "images" at the current place
../images/file.jpg ==> The file named "file.jpg" placed in the folder 1 level up of the current, if possible, or current if we are on the root level
__________________
Only a biker knows why a dog sticks his head out the window.
|