I'm pretty new to Django. I started an app, made template and static directories, add them to the project settings and ran the server by following this tutorial. Then I wanted to change some settings in my CSS file so I modified some lines. But when I ran the python manage.py runserver
again(I ran on Windows), the changes did not take effect. The initial code of CSS is:
body {
position: relative;
padding-bottom: 10px;
min-height: 100%;
background: #f7f7f7;
}
I changed the padding resulting like this:
body {
position: relative;
padding-bottom: 50px;
min-height: 100%;
background: #f7f7f7;
}
When I ran the django server again, the new code was not taking effect. I checked the code with Chrome Dev Tools and found out the padding value was still 10px. I've been running the server again and again but with no change. Is there something I am missing with the settings?