Hi Guys, web newbie here,
I have a css file on my site that references an image (pic.png
) like so:
content { border: 1px solid #000000; background: #ffffff url(images/pic.png) 50% 50% repeat-x; color: #000000; }
When I use firebug I see that it tries to get:
GET /path/to/css/%22images/pic.png%22
For some reason it wraps it with url encoded quotation marks (%22), and then I get a 404 not found error.
Any ideas?