I have a CSS file in which i added a background initially to it. Then after some time i added some more background images to my media folder and tried to change the background. But this time, it didn't work. And moreover, the previous background image itself is loaded again. I tried to inspect the webpage. There, in sources, I opened the CSS file. It was not updated. It is still showing the previous background image url. How to rectify this issue?
My CSS file(previously):
body {
background: white url("images/background.png");
}
ul.errorlist {
padding-left: 0;
}
ul.errorlist > li {
list-style: none;
}
.navbar {
border-radius: 0;
}
.navbar-brand {
font-family: 'Satisfy', cursive;
}
Then I changed the background image url to:
body {
background: white url("images/ak.jpg");
}
The new image is not loading. When I inspect the element, the previous CSS file is shown.