Sub Title hover colour

Hi There,

I have changed the hover colour on my Main menu however after adding a few posts I have noticed the hover colour is set to default. Is there a way of changing the hover colour for posts that are sub titled under a page?

website is: twointransit.com

Thanks in advance :slight_smile:

Hi @twointransit,

Thank you for your question.

You can try changing hover color of sub dropdown menu 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 {
    background-color: #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