- This topic has 3 replies, 3 voices, and was last updated 3 years, 6 months ago by .
Viewing 4 posts - 1 through 4 (of 4 total)
Viewing 4 posts - 1 through 4 (of 4 total)
- You must be logged in to reply to this topic.
Support site for Tips and Tricks HQ premium products
by
Tips and Tricks HQ Support Portal › Forums › WP eMember › how to change font color emember registration form
How to change font color in the emember registration form? It is too light and I want to change it. Thank you.
Please post a LIVE LINK to the page in question, and also indicate which text are you wanting to change the colors on.
The text in the fields in the registration form showing subscribers what to type in box/field. eg. Username
See on this page:bettermarksinmaths.com.au/about/join-us/register/
Basically how to style those field labels.
Those are placeholders. You can target those using something like the following:
#wp_emember_user_name::placeholder {
color: #DDDDDD !important;
}
The above is an example CSS code that should target the username field’s placeholder text color and change it to #DDDDDD
The following is another example that can be used to target all the placeholder texts of the registration form and change the color to blue:
#wp_emember_regoForm input::placeholder {
color: blue !important;
}