Change color of a single item of mega menu prestige theme

I would like to change the color to light gray of an item of the mega menu in normal view and also in hover for ‘Sekretäre

Image for reference,

https://ibb.co/TBXT1VyF

The store is https://damianomoebel.myshopify.com/

password damiano

Thanks for your help.

1 Like

Hi @urbantis

TRy this one.

  1. From your Shopify admin dashboard, click on “Online Store” and then “Themes”.
  2. Find the theme that you want to edit and click on “Actions” and then “Edit code”.
  3. In the “Assets” folder, click on “base.css, style.css or theme.css” file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:
mega-menu-disclosure > details > div > ul > li:nth-child(1) > ul > li:nth-child(4) > a,
mega-menu-disclosure > details > div > ul > li:nth-child(1) > ul > li:nth-child(4) > a:hover {
    color: lightgrey;
}

Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!