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?
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?
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...
I attached a screenshot of what the changes will look like.
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.
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.
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..