I encountered a similar issue recently.
After investigating, it appears that in AdminLTE's default HTML pages, the file dist/css/adminlte.min.css
is utilized over dist/css/adminlte.css
. To confirm this, you can follow these steps:
- Start your server using the command line (
python manage.py runserver
).
- Access the desired page on a web browser.
- Check the output in the terminal window.
You should notice something like
GET /static/dist/css/adminlte.min.css.map
, indicating that
dist/css/adminlte.min.css
is being used instead of
dist/css/adminlte.css
.
To address this in your HTML pages, simply update the link from :
<link rel="stylesheet" href="/path/to/dist/css/adminlte.min.css">
to
<link rel="stylesheet" href="/path/to/dist/css/adminlte.css">
Once this adjustment is made and you refresh the page, the edited adminlte.css
file will be applied as expected.