Drop-down menu background Colour

Hi,

I want to change the background color of my drop-down menu from white to another color, how do I go about this? When I view my website on a mobile devices it’s hard to see the drop down menus because its the same white color with the theme background.

Hi @biodun,

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

You can try changing it for mobile drop down 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

@media (max-width: 767px){
    .navbar-default .navbar-collapse {
    background: #d8d2d2;
}
}

Best Regards,
Movin

Thanks! It worked

You are most welcome here :slight_smile: