[ad_1]
Hello, how do you make a menu item change color when you hover over it with your mouse? Would also love to know how to do the underline thingy with a transition of like 0.3s
[ad_2]Copyright © 2020 - 2022, Project DMC - WordPress Tutorials for Beginners- All Rights Reserved. Privacy Policy
You can use CSS for that.
selector:hover {
background-color: gray !important;
}
Replace selector for the class of the (sub)menu and add the color code you like instead of gray.