I'm having a problem in displaying images in my CSS file.
I have a css file with the following class:
.header
{
margin-left: auto;
bla bla
bla bla
...
background: url(/site_media/header_background.gif) no-repeat top left;
}
When I execute the template with this css, no image is displayed, but when I directly inject the background style into my template it works perfectly.
What am I not doing right?