How can i discard underline from header's drop down menu & change color of clicked link to white

hi,

i want to remove underline from my drop down menu like shop by and also want to keep clicked menu color white instead of black.

https://quirkyqueststudio.myshopify.com/

pass advertfox

Hi @Advertfox Please add the code in your theme.css/base.css/style.css file which is available in your theme.

details[open]>.header__menu-item {text-decoration: none;}

.header__active-menu-item {
    color: white !important;
}

If you are not sure where is your theme.css/base.css/index.css/style.css file please follow the steps:

  1. Login in shopify admin.
  2. Click on the Online Store.
  3. Then click on the button next to Customize in live Theme.
  4. Click Edit Code.
  5. Search theme.css/base.css/index.css/style.css in the code in left hand side which ever is available in your theme.
  6. You can add the above code at the bottom of the file.

Result:

If you will unable to implement the same then I’m happy to do this for you, let me know. I can implement the code changes so that this will work well for you.

Hopefully it will help you. If yes then Please don’t forget hit Like and Mark it as solution!

Best Regards

Sahil

thanks a lot, it really helped !!