Change the text color on hover in the header menu
-
Hello,
please advise how I change the text color on hover in the header menu and the thin line under the text on hover. I can not find it in my settings.
Thank you Jiri
Hi,
Please, provide us a screenshot of this text and your website link for better understanding.
Thank you in advance
i thought this ..
Attachments:
You must be
logged in to view attached files.
Try to add the following code snippet to the Custom CSS area in Theme Settings.
body.menu-style-bordered .website-wrapper .navigations-inner .main-nav .item-level-0 > a span:not(.menu-label):after {
background-color: #f9f9f9;
}
Regards
Thank you. This changed the color of the line, you can still send me a code to change the font color on hover.
Regards Jiri
Try this one
body.menu-style-bordered .navigation-wrap.navigation-color-scheme-dark .main-nav .item-level-0 > a {
color: black;
}
body.menu-style-bordered .navigation-wrap.navigation-color-scheme-dark .main-nav .item-level-0 > a:hover {
color: gray;
}
Regards