1๐
โ
I think your compressed_js and compressed_css does not do the trick.
To check if everything is ok, use for exemple FireBug
, then press F12 and point your mouse on the badge to see if the CSS rule is display on the left panel. Repeat this step for badge-success to try to find it.
After all of this iโll suggest a more classical way without compressed_xxx :
<link rel="stylesheet" href="{% static "bootstrap/css/bootstrap.min.css" %}" type="text/css" media="screen" />
<link rel="stylesheet" href="{% static "bootstrap/css/bootstrap-responsive.min.css" %}" type="text/css" media="screen" />
where bootstrap
is the folder I put in the static
one I setup in the settings.py
file
Hope this will be usefull.
๐คuser1593705
Source:stackexchange.com