How can I change the colors of the mobile view main menu? In the desktop view it’s OK, but in the mobile it’s unreadable. Here’s the site: http://carportal.hu
You can add custom CSS to change color in only mobile version.
Please log in to the admin area and go to “Appearance >> Customize >> Additional CSS”.
Paste the below code in “Additional CSS” and save it afterwards:
@Media(max-width:991px){
.mean-container .mean-nav ul li a{background: #51676c!important; color:#ccff00;}
.mean-container .main-navigation ul li.menu-item-has-children ul.sub-menu li a {color:#ccff00;}
.mean-container .main-navigation ul li.menu-item-has-children ul.sub-menu li a:hover {color:#dd9933;}
}
You can set the color as you desire in the above rules.
Hope this helps you.