[Answer]-Testing Twitter bootstrap on Django badges

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

Leave a comment