mobile menu
PermalinkWhere is the place to change that color so you can read the menu?
My theme is a Supermint.
Can any one help me, I am sure it is simple?
Try adding this to your custom theme CSS:
- click on the "Add Your CSS" button
https://www.concrete5.org/documentation/using-concrete5/dashboard/pa...
/*Background Color*/ .mm-ismenu { background: white; } /*Font Size*/ .mm-list { font: inherit; font-size: 20px; } /*Right Chevron Icon*/ .mm-menu .mm-list>li>a.mm-subopen:after, .mm-menu .mm-list>li>a.mm-subclose:before { border-color: black; }
I attached a screenshot of what the changes will look like.
You will have to change the css of
a:not(.btn):not(.button) {
//your style
}
to
a:not(.btn):not(.button) {
color: #63b4c9;
}
or any other colour you can use.
Try changing the #333 to #fff
This will give a white background color, or maybe #666 for a lighter grey color..