one little bug with the main color

Hello all,

I’ve created a dropdown menu with all my categories. When I open the link for one of the categories the color in the menu changes to the default purple. See example http://mass-genommen.de/category/hosen/ where the word “Kategorien” is purple instead of the light blue I chose for the blog.

Has this something to do with the child theme I am now using?

Thank you for all the great support I get from here!!!

Regards
Patrick

Hi Patrick,

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

That color is changed to display which menu item is currently visited.

You can change that color 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 .navbar-default .navbar-nav .current-menu-ancestor a.dropdown-toggle{
    color: #68b2ea;
}

Best Regards,
Movin

Hi Movin,

thanks a lot! That helps for the word “Kategorien” but the chosen menu item of the dropdown is still purple :confused:

Can you support on that?

Thanks a lot!!
Patrick

I had similar issue and much like you was having difficulty fixing the drop down active color on the category page. I was able to find a solution. If you use the following 2 css entries it should correct it. I already added the color code for the shade of blue you were using. I hope this helps.

/Menu/
#page .navbar-default .navbar-nav .current-menu-ancestor a.dropdown-toggle{
color: #68b2ea;
}

.dropdown-menu>.active>a,.dropdown-menu>.active>a:hover, .dropdown-menu>.active>a:focus {
background-color: #68b2ea;
color: #fff;
}

thanks - that works! Although I just saw that it is not working for mobile?

Thanks a lot!
Patrick

You are most welcome here :slight_smile:

Please try using the below CSS code to make it work on mobile devices.

#page .dropdown-menu>.active>a,
#page .dropdown-menu>.active>a:hover, 
#page .dropdown-menu>.active>a:focus {
background-color: #68b2ea;
color: #fff;
}

Thank you all for help!!!

You are most welcome here :slight_smile:

Hi, I’ve tried using the codes from the post above but my chosen menu item is still the default purple. (Please see screenshots).
I’m trying to make it orange for selected items.

Thank you in advance!

Hi @hdossary,

To help us keep support thread separates could you please create your own thread for your question here https://colorlibsupport.com/c/activello/ instead of replying on others thread as it makes the thread messy and hard to read.

If you want to you can also add reference of this thread in your newly created thread.

We would be more than happy to help you on your new thread.

Cheers,
Movin