Hi, I have added the code snippet I found in your references to my child-theme function.php to add a subhead to the logo.
The issue I am having is this subhead shows an underline (link) on hover. How do I get rid of this?
The temp site is here: http://partners.flywheelsites.com/
Thanks,
Slade
Hey Slade!
Please add the following CSS
.subtext a:hover {
text-transform: none !important;
}
let us know if that works fine for you.
Cheers!
Basilis
Hi Basilis, thanks for the reply!
The underline still shows up on hover.
Hi,
Please try the following instead:
.subtext h6:hover {
text-decoration:none !important;
}
Thanks,
Rikard
That doesn’t work either. Big mystery….
Hi,
Try this instead:
.logo a:hover {
color: transparent !important;
}
Regards,
Rikard
ahh…tricky and Brilliant!! Worked like a charm! Thanks