Home Forums Basel support forum Mobile menu color Reply To: Mobile menu color

#73709

abojorges
Participant

Hello Elise,

Thanks for the reply!
I tried your code and it worked nicely.
I want to invert the colors (being white background and pink letters), I tried the following, but I’m only missing to change the colors of the letters when not selected. Could you help me with that?

Thanks!


div.mobile-nav .sub-menu-dropdown ul:before {
    content: none;
}

div.mobile-nav,
div.mobile-nav .sub-menu-dropdown ul{
   background-color: #ffffff;
   color: #ffa990;
}

div.mobile-nav ul li a,
div.mobile-nav .icon-sub-menu {
        border-color: rgba(255, 169, 144, 1);
}

div.mobile-nav ul li.current-menu-item>a {
    color: #ffa990;
}

div.mobile-nav ul li a:active {
        background-color: rgba(255, 169, 144, 1);
}