Community Tip - Did you get an answer that solved your problem? Please mark it as an Accepted Solution so others with the same problem can find the answer easily. X
Hi
I am trying to change the text color of the menu using custom CSS while hovering but not getting any solutions can somebody help on this..
Thanks in advance
Solved! Go to Solution.
This code is working for me. Try it
.widget-menu-runtime:not([themable]) .widget-menu li:hover {
background: rgb(229, 229, 229);
filter: none;
-webkit-text-fill-color: blue;
}
Hi @AA_9925011,
Why not using Style Properties > MenuHoverStyle to change font color when hovering the menu widget?
Thanks,
/Yoyo
You can try below css code, it takes effect in my environment:
.widget-menu-runtime:not([themable]) .widget-menu li:hover span{
color:red;
}
I'm not sure whether you use a menu widget to build the menu, could you follow the below steps and let us know the CSS element of your menu?
1.Run Preview of your mashup
2.Press F12 on the keyboard to open Developer Tools
3.In Elements, use "ctrl+shift+c" to select an element on the page to inspect it
4.In Preview window move mouse cursor hover menu widget
5.We can see the CSS class, make the screenshot, and provide it to us
please find the screenshots attached
This code is working for me. Try it
.widget-menu-runtime:not([themable]) .widget-menu li:hover {
background: rgb(229, 229, 229);
filter: none;
-webkit-text-fill-color: blue;
}