Present background image is
background: url("../img/hero-bg.jpg") top center;
I want to replace it, so I tried this:
background: url("../img/bg.jpg") top center;
The Image: bg.jpg is the same folder where hero-bg.jpg is.
The image won't be replaced, so that still hero-bg.jpg is visible. If I inspect the element it showed me this Stylesheet for it:
background: url("../img/hero-bg.jpg") top center;
Any Idea why?