It's puzzling why the logo image I uploaded to the WP theme isn't showing up on the front-end.
I've reached out to the theme developers multiple times, but it's been two months without a response, and my client, as well as myself, are getting increasingly frustrated!
You can find the CSS and HTML below:
logo {
z-index: 3;
position: fixed;
top: 40px;
left: 40px;
}
#logo {
font-family: "raleway";
color: #4d4b4b;
}
#logo-default {
position: absolute;
transition: all 0.5s ease
}
<div class="logo">
<img href="http://cardiffcosmeticacupuncture.com" id="logo">
<img id="logo-default" src=http://cardiffcosmeticacupuncture.com/wp-content/uploads/CCA_LogoMain.png" data-src=http://cardiffcosmeticacupuncture.com/wp-content/uploads/CCA_LogoMain.png" alt="logo" />
</img>
</div>