Button hover color won't change

Hello!
I want to change the drop down menu hover button color from purple to another color, and it doesn’t work from Shapely > Customize > Layout options
I’ve attached a screenshot of it.
Thank you!

Hi @ritco,

I hope you are well today and thank you for your question.

You can try achieving this by adding the following CSS code in the Custom CSS option of your theme on the below path.

Admin Area -> Appearance -> Customize -> Shapely Options -> Other

body .menu > li > ul li a:hover, 
body .dropdown-menu>.active>a:hover {
    background: #87f95c;
    color: #0e1015;
}

Please change the color value in the above code to whatever you want to use by referring the following pages.

http://www.w3schools.com/html/html_colors.asp
http://www.w3schools.com/html/html_colorvalues.asp
http://www.w3schools.com/tags/ref_colorpicker.asp

Best Regards,
Movin