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,
The store is https://damianomoebel.myshopify.com/
password damiano
Thanks for your help.
A user wants to change the color of a specific mega menu item (“Sekretäre”) to light gray in both normal and hover states on their Shopify store using the Prestige theme.
Solution Provided:
color: lightgrey to both normal and hover statesThe solution uses CSS nth-child pseudo-selectors to precisely target the menu item without affecting other elements. A reference image was provided showing the desired outcome.
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,
The store is https://damianomoebel.myshopify.com/
password damiano
Thanks for your help.
Hi @urbantis
TRy this one.
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!