I’m sure I caused this myself, but the main nav logo on all pages isn’t hyperlinking.
Here’s a link to the site:
Hey!
Try adding this code to the Quick CSS:
.logo {
z-index: 1000;
}
Cheers!
Josue
CSS snippet added to no avail. Any other ideas?
It’s not getting applied, try putting it in this file directly.
I’ve inserted it directly into style.css
Still no change.
A z-index value set in layout.css was conflicting with what I was applying to style.css
I added this which did the trick:
.logo {
z-index: 1000!important;
}