This topic has 2 replies, 2 voices, and was last updated 8 years, 3 months ago ago by Rose Tyler
Hello there.
Can you pass me the piece of CSS code that allows me to change all the colors on the menu that is displayed in mobile devices such as celphones or small tablets?. Right now is all dark, the background and even the letters.
I’d like to change the backgroud color, the menu items and also the background and letters at subitems.
Thanks a lot.
Cheers
Hello,
Use this css code to change mobile menu background and font color:
.mobile-nav {
background-color: #f7be68;
}
.mobile-nav-heading.close-mobile-nav {
background-color: #f7be68;
color: red;
}
.mobile-nav li > ul {
background-color: red;
}
.mobile-nav li > ul:before {
border-bottom-color: red;
}
.mobile-nav li > ul > li ul{
background-color: #f7f7f7;
}
.mobile-nav li > ul:before {
border-bottom-color: #f7f7f7;
}
.mobile-nav li > ul > li a {
color: #000;
}
Change color to yours.
Regards,
Rose Tyler.
You must be logged in to reply to this topic.Log in/Sign up