开发者

loading picture for django templates via css

I have such folder structure in my django site theme:

loading picture for django templates via css


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?

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜