menu color for phone and tablet
Hi,
Actually there isn’t any option to change the menu color. But it can be changed using custom CSS.
Thanks.
Hi,
It’s the div main-nav? I tried that but it still doesn’t work.
thanks
Hi @jamaloos,
I used the custom css I found in another topic started bij Halliwel and it worked just fine.
cheers, Tessa
Hi,
If using custom CSS, please add the below custom CSS under “Customize” > “Additional CSS”, to change the menu color:
.menu
{
background-color:blue;
background-image:none;
}
/*to change hover color*/
.menu a:hover
{
background-color:blue;
background-image:none;
}
/* to change active tab menu color */
.menu .current_page_item a, .menu .current-menu-item a {
background-color: blue;
}
Please choose the color of your choice instead of blue mentioned above.
Thanks.