Are you referring to the hover effects of your main menu?
Add CSS like this to Appearance> Theme Options> Custom CSS.
ul#menu-main1 li:hover {
background: rgba(200, 239, 117, .4);
}
You’ll just have to change the color property to whatever suits your site.
ul#menu-main1 li:hover {
background: red;
}
The color I’m referring to is the “red” in this bit of code. I used a different format for the color in the original code I shared with you.
There are a lot of different ways to interpret colors in CSS.
Here is a useful tool you can use to come up with more complex colors.
http://www.w3schools.com/colors/colors_picker.asp
ul#menu-glavnoe-menyu li:hover {
background: red;
}
Here, use this instead.
Thank you very much!!!!!!!!!!!!!!!!!!!!!!!