Sub Menu hover colour

Hi,

How do I go about changing the hover colour in my sub menu as it is still purple?

Hi @destinylife,

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

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

Admin Area -> Appearance -> Customize -> Activello Options -> Other -> Custom CSS

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

You can 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