mobile menu

Permalink
When I hit the button to look at the menu on a moblie device the color is dark grey. You can barely read the topics to choose from.
Where 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?

1 Attachment

 
ConcreteOwl replied on at Permalink Reply
ConcreteOwl
In your screen.css file you have this..
.mm-ismenu {
  background: #333;
    }

Try changing the #333 to #fff
This will give a white background color, or maybe #666 for a lighter grey color..
MrKDilkington replied on at Permalink Reply 1 Attachment
MrKDilkington
Hi silvermoonmedicyn,

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.
Pluto replied on at Permalink Reply
Pluto
Hello silvermoonmedicyn
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.