How can I remove the underline from menu links?

I read so many forums and tried so many things. I cannot remove the underline from the menu links. How do I?

https://elitejewelsco.myshopify.com/

PW: elite

Hi @krishafj ,

  1. Go to your Admin store > Online store > Themes > Click Actions > Edit code

  2. Open the base.css file under your Asset folder.

.header__menu-item .header__active-menu-item {
text-decoration: none;
}

@krishafj

yes, please try this code

  1. Go to Online Store->Theme->Edit code
  2. Asset->/base.css ->paste below code at the bottom of the file.
.header__menu-item span {text-decoration: none;}

Hey @krishafj ,
Welcome to the Shopify community!
You can follow the instruction below:
please add this to your CSS file.

.header__inline-menu .header__menu-item span {
  text-decoration: none;
}

If you feel like my answer is helpful, please Like and mark it as a solution. Let me know if you have any further questions.
Thank you!
Raman

Please add below css in bottom of assets/base.css file

.header__menu-item span {
text-decoration: none;

}
Thank you.

@krishafj

add this code to your base.css file.

Navigate to online store >> Click edit theme code.

Now find base.css and paste the following code:

.header__menu-item span{text-decoration: none !important;}

all your advice doesn’t work!

Hi @tekiczech ,

Our solution might not work for you unless your website is the same as @krishafj . Please post a different question and provide your website to provide a solution that works for you

I’m on it. Thank you very much :slightly_smiling_face: