Home › Forums › WordPress Themes – Premium › Pure & Simple › Menu color in mobile mode › Reply To: Menu color in mobile mode
November 30, 2015 at 9:42 am
#22163
Participant
Hi There,
Please use the following css to fix your issue;
Mobile menu:
– color of border lines (lines between menu – items)
.site-navigation.toggled-on a {
border-bottom: 1px solid #157215;
}
– active background color of mobile menu button.
.menu-toggle:hover, .menu-toggle:focus, .menu-toggle:active{
background-color: #fff;
}
Letters:
– shown in websitetitle
It seems that you have kept the Site Title in capital letters, so please follow the following steps to fix your issue;
Go to Dashboard => Appearance => Customize => Site Identity => Then please use the small letters to keep the Site Title => And save/update it.
– shown in menu (on big and small devices)
Regarding this issue could you please explain more about it because we are little bit confused about your issue. If you want to change the menu letters in the small letters, then please use the following css, if not, then please explain more about your issue.
.site-navigation.toggled-on ul a {
text-transform: none !important;
}
Note: Please use the custom css plugin or child theme to write the css.
Thanks