So it appears that, based on this discussion, CSS files loaded from the link tag reference files relative to the folder where the CSS file is located...
Here is my directory structure:
httpdocs/
css/
thecss.css
bg.png
In the thecss.css file, I have the following entry:
#guinea {background-image:url(bg.png)}
The issue I'm facing is that even though the image is in the same directory as the CSS file, it's not displaying...
However, if I modify it to this:
#guinea {background-image:url(http://localhost/css/bg.png)}
it works!
Using `url(/css/bg.php)` doesn't work either...
What could I be doing incorrectly? Why isn’t my relative URL inclusion functioning as expected?