change hover color on the navigation
-
I want to overwrite this :
"core/navigation": { "elements": { "link": { ":hover": { "typography": { "textDecoration": "underline" } }, "typography": { "textDecoration": "none" } } }, "typography": { "fontWeight": "500" } },
to this :
"core/navigation": { ? ? ? ? ? ? ? ? "elements": { ? ? ? ? ? ? ? ? ? ? "link": { ? ? ? ? ? ? ? ? ? ? ? ? ":hover": { ? ? ? ? ? ? ? ? ? ? ? ? ? ? "typography": { ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? "backgroundColor": "red", "color" : "white" ? ? ? ? ? ? ? ? ? ? ? ? ? ? } ? ? ? ? ? ? ? ? ? ? ? ? }, ? ? ? ? ? ? ? ? ? ? ? ? "typography": { ? ? ? ? ? ? ? ? ? ? ? ? ? ? "textDecoration": "none" ? ? ? ? ? ? ? ? ? ? ? ? } ? ? ? ? ? ? ? ? ? ? } ? ? ? ? ? ? ? ? }, ? ? ? ? ? ? ? ? "typography": { ? ? ? ? ? ? ? ? ? ? "fontWeight": "500" ? ? ? ? ? ? ? ? } ? ? ? ? ? ? },
but when I try it , I see still as hover the old underline .
What did I do wrong here ?
- You must be logged in to reply to this topic.