[Answer]-Stylesheet stopped showing my changes – django

1👍

Alright I figured out what was happening.

When I went to update my style sheet I was going to the static root directory.

What I didn’t realize was that I had a static folder in one of my apps and when I ran collectstatic it copied that screen.css file into the static root directory.

So instead of updating the original screen.css file I was updating the copy in the static root.

0👍

Do you have DEBUG and TEMPLATE_DEBUG = False? If so, you might need to run ./manage.py collectstatic to gather your changed static files and send them to your static root.

If this is happening with DEBUG = True, then this won’t solve your problem.

👤Alex

Leave a comment