views:

195

answers:

2

I'm debugging on my development machine and when I make changes to the css file, they don't show up and I can't figure out why. I'm using firebug and inspecting the css and the changes are not there. I've tried clear private data and building the project first then running it but nothing seems to work.

Thanks.

+1  A: 

It's probably caching your css file. Either modify your setting in the browser to stop caching, or add a unique identifier to the css file like Site.css?d=011509.

Micah
I think this works well in production, but the id would have to have a granularity too fine for normal production use to useful for development.
tvanfosson
+6  A: 

Use CTL+F5 to force a full refresh -- it will force the browser to ignore anything cached.

Jeffrey Meyer