This is a new issue for me, as I can't seem to understand why the hover effect is working, but the background image won't change:
<div class="settings" id="settings" style="background-image:url(assets/settings.svg);"></div>
.settings{
width: 2.0vw;
height: 2.0vw;
margin-top: calc((8vh - 2vw)/2);
margin-left: 1.5vw;
float: left;
background-position: center;
background-size: contain;
}
.settings:hover{
background-image: url("assets/settingsH.svg");
}
To confirm that the image is present, if I specify assets/settingsH.svg
in the HTML - it will display the hover image.
If I adjust the size on hover, the hover effect works, but the background image remains the same.
No other hidden settings
class was identified.