Archived topic
Primary Menu Custom Links ?
3 replies · Started by Lylliana on June 29, 2018
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.
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 :)
Perfect! Thank You!
You're welcome! :)