Do you mean the menu drop down box when you hover on members area menu option?
ie you want
sign up
account
member forum
to be in black
or do you mean elsewhere?
If you hover over members area and click sign up, on that page there is a drop down box (system of choice) which is during the sign up process. I want to change the text colour on that drop down box and the options associated with that box.
I think black text would look a bit better than grey text.
ok, the code being used is in
wp-content/plugins/wp-members/css/wp-members-2012.css
line 182
the existing code is
#wpmem_reg .dropdown {
-moz-font-feature-settings: inherit;
-moz-font-language-override: inherit;
border-color: #CCCCCC;
border-radius: 3px;
color: inherit;
font-family: inherit;
font-size: inherit;
font-size-adjust: inherit;
font-stretch: inherit;
font-style: inherit;
font-variant: inherit;
font-weight: inherit;
height: 50px;
line-height: 1.625;
padding: 10px;
width: 100%;
}
You can either amend color in there to #000000
ie change
color: inherit;
to
color: #000000;
This may be overwritten by any updates to the wp-members plugin, so keep a note of it.
or better put a line in your child theme if you have one, which would be
#wpmem_reg .dropdown {
color: #000000 !important;
}
Thank you very much Robin.
Very much appreciate this!