• Resolved Volodymyr

    (@namzzz)


    Hello!

    I want to add underline on hover for menu links and i don’t need any text decoration for active menu links. But customizer changes style of menu links for hover and active in one single option.

    The page I need help with: [log in to see the link]

Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Author Twentig

    (@twentig)

    Hi,

    To remove the underline on active menu links for Twenty twenty, you can add some custom CSS (Customizer > Additional CSS):

    .primary-menu li.current-menu-item > a {
        text-decoration: none;
    }
     
    .primary-menu li.current-menu-item > a:hover {
        text-decoration: underline;
    }

    I hope the above is useful to you.
    Tom

    Thread Starter Volodymyr

    (@namzzz)

    Yeah, works perfectly!

    Thank you, Tom!

    Plugin Author Twentig

    (@twentig)

    Glad it works!

    If you enjoy Twentig, please rate it. It would really help me out ??
    Tom

    Thread Starter Volodymyr

    (@namzzz)

    Done!)

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Menu link hover style’ is closed to new replies.