- This topic has 4 replies, 2 voices, and was last updated 2 years, 7 months ago by .
Viewing 4 reply threads
Viewing 4 reply threads
- You must be logged in to reply to this topic.
Also,
I have not been able to find where the mobile background and text color changes are located for when the site is small enough for mobile. Please see attached graphic. I would like to brighten the text and lighten the background of the areas in the graphic. I do not see these options in the appearance–>Theme Options Schemes.
There is option to change style for mobile menu. You can try this below css code (install Custom CSS plugin to add css code):
@media (max-width: 480px){
.menubar .container-fluid .menu-list.menu-list-mobi {
background: gray!important;
box-shadow: -200px 0 0 0 grey, 200px 0 0 0 grey!important;
}
.menubar .container-fluid .menu-list.menu-list-mobi ul {
background: grey!important;
}
.menubar .container-fluid .menu-list.menu-list-mobi ul li {
background: grey!important;
}
.menubar .container-fluid .menu-list ul li > a {
color: blue!important;
}
}
Hope this helps!