Home Forums Basel support forum Change menu background color Reply To: Change menu background color

#1133

Artem Temos
Keymaster

Hello,

Thank you for creating the topic.

Here is a code snippet that will help you. Add this to admin -> Theme Settings -> Custom CSS


.navigation-wrap {
    background-color: #19A97E;
    border: none;
}
.main-nav .menu>li>a{
    color:white;
}
.main-nav .menu>li>a:hover,
.main-nav .menu>li>a:focus {
    color:rgba(255,255,255,0.8)!important;
}
.main-nav .menu > li.menu-item-has-children > a:after {
    color:rgba(255,255,255,0.4);
}
.main-nav .menu > li.current-menu-item > a {
    color:white!important;
}