Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #681675

    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

    #681682

    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

    #681700

    Hi Basilis, thanks for the reply!

    The underline still shows up on hover.

    #681936

    Hi,

    Please try the following instead:

    .subtext h6:hover {
    text-decoration:none !important;
    }

    Thanks,
    Rikard

    #681939

    That doesn’t work either. Big mystery….

    #682431

    Hi,

    Try this instead:

    .logo a:hover {
    color: transparent !important;
    }

    Regards,
    Rikard

    #682432

    ahh…tricky and Brilliant!! Worked like a charm! Thanks

    #682959

    Hi,

    Great, glad we could help :-)

    Please open a new thread if you should have any further questions or problems.

    Thanks,
    Rikard

Viewing 8 posts - 1 through 8 (of 8 total)
  • The topic ‘Logo Subtext underline’ is closed to new replies.