diff options
Diffstat (limited to 'static/website/bootstrap-css/custom.css')
-rwxr-xr-x | static/website/bootstrap-css/custom.css | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/static/website/bootstrap-css/custom.css b/static/website/bootstrap-css/custom.css index 7014560..4533ab7 100755 --- a/static/website/bootstrap-css/custom.css +++ b/static/website/bootstrap-css/custom.css @@ -1,6 +1,7 @@ /* Paste this css to your style sheet file or under head tag */ /* This only works with JavaScript, if it's not present, don't show loader */ +{% load static %} .no-js #loader { display: none; } .js #loader { display: block; position: absolute; left: 100px; top: 0; } .se-pre-con { @@ -10,7 +11,7 @@ if it's not present, don't show loader */ width: 100%; height: 100%; z-index: 9999; - background: url(images/loader-64x/Preloader_2.gif) center no-repeat #fff; + background: url({% static 'website/bootstrap-css/images/loader-64x/Preloader_2.gif' %}) center no-repeat #fff; } .btn:focus, .btn:active, button:focus, button:active { |