Hover color in drop-down menu

Hello

I have added a drop-down menu (site) and the hover color is purple. Can i change that to be a different color?

Hi @rainstorm,

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

#page .menu > li > ul li a:hover, 
#page .dropdown-menu>.active>a:hover {
  background: #000;
  color: #fff;
}

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

Thank you very much for this and also the answers to my previous questions!

You are most welcome here :slight_smile: