loading picture for django templates via css
I have such folder structure in my django site theme:
index file load the style.css and the style.css should load my bg.jpg,I do this in style.css:
开发者_运维百科body {
background:#fff url('../images/images/bg.jpg') repeat-x;
}
but it doesn't work,I,ve tryed this,too:
body {
background:#fff url('sitestatic/images/images/bg.jpg') repeat-x;
}
css URL : /sitestatic/css/style.css
image URL : /sitestatic/images/images/bg.jpg
how can I load this picture via style.css?
You may want to read the documentation about how to manage static files with django.
Try: background:#fff url(../images/images/bg.jpg) repeat-x;
The URL should be without the single quotes. BTW why do you have two "images" directories nested?
精彩评论