Forum Moderators: coopster
As for not finding images, when you use an image for CSS, the path is relative to the CSS file. I find it's usually simplest to put a background image in the same directory as the CSS file, but otherwise, you'll need to resolve the path.
I'm not sure off hand if you can use absolute paths that resolve from root, but
url:image/img.png
would be
site_root/css/image/img.png
as far as I know. I haven't done it lately, though, so I could well be wrong.