I've been attempting to update the logo in this template where the logo is defined as a class from the css file, but unfortunately, my changes are not taking effect.
Below is the code snippet. (P.S. Let's say the new logo image name is NEWLOGO.jpg)
CSS
.logo {
background:url('../images/logo.png') no-repeat center center;
background-size:90px 30px;
width:90px;
margin-left:-45px;
height:30px;
}
HTML
<div class="logo"></div>
Any assistance would be highly valued.