[Answered ]-Django: CSS and Images (Static Files) loaded successfully but not applied

2👍

Moving the CSS after bootstrap worked for me.

Like this

<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" type="text/css" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="{% static 'css/checkout.css' %}">

Leave a comment