Despite removing CSS code from my Rails application, after restarting the server and refreshing the page, I still see that the code is in effect. Even when inspecting the elements using Chrome, the code remains visible.
@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');
}
}
An example of this issue is when I delete background-image: url('bg.png');
but the background image stays the same. As a beginner in CSS and Rails, I believe it must be something simple that I am missing.