[Resolved] Primary Menu Custom Links ?

Home Forums Support [Resolved] Primary Menu Custom Links ?

Home Forums Support Primary Menu Custom Links ?

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #611842
    Lylliana

    I have a one page site with 3 menu options which are custom links.
    How do I remove the text-decoration:underline to none?

    My menu items are currently underlined and when I change the height of my sticky navigation it makes it look like my menu names are “strike through”

    I see the css but I’m not clear on the section layout of it. Sorry – it’s been awhile since I’ve dabbled with css code. I have gp premium but I don’t see a setting in any of my menu options or customization sections where I can remove the underline in my menu links.

    #611870
    Tom
    Lead Developer
    Lead Developer

    Hi there,

    You can move it down:

    @media (min-width: 769px) {
        .main-navigation.navigation-stick .menu > .menu-item > a::after {
            bottom: 3px;
        }
    }

    Or remove it:

    .main-navigation.navigation-stick .menu > .menu-item > a::after {
        display: none;
    }

    Hope this helps ๐Ÿ™‚

    #612395
    Lylliana

    Perfect! Thank You!

    #612444
    Tom
    Lead Developer
    Lead Developer

    You’re welcome! ๐Ÿ™‚

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.