After deleting some of my CSS code in a rails application, I restart the server and refresh the page and I find the code is still being used. I can still see it when I use the Chrome element inspector.
@media screen and (min-width: 961px) {
.logow { position:absolute; left:0px; top:0px;
}
body {
font-family: Verdana, Arial, Tahoma, sans-serif;
background-image: url('bg.png');
}
}
For example, if I delete the background-image: url('bg.png'); from my code, the background still stays the same. I am a CSS and rails noob so it is probably something very simple.
Press Ctl+Shift+Del and you can remove cache, cookies and whatever you want, then load your page.