I'm facing some weird css issue with django . My css works fine but some how if i change any rule or add another one it does not take effect .
i'm using this to put css on django :
(r'^/css/(?P<path>.*)$', 'django.views.static.serve',
{'document_root':'/home/lioy/django_projects/terrasis/css/'}),
and it is linked to my base.html :
< link rel="stylesheet" href="/css/style.css" type="text/css" />
It works . But somehow the changes that i made to my style.css doesnt take effect .I tried to change the background color of one already working propertie and nothing happend. Is that a bug or something .. ?
I restarted the django server and it doesnt make any difference ...