Help me change the text color in fields ( WORDPRESS )

thinkingforward

Registered Member
Joined
May 6, 2021
Messages
74
Reaction score
28
I have a big problem with " Text Colour" in fields. ( I think Theme setting -> Styles and Colors )
My website uses dark themes and white text

As the first 4 pictures, I use the Wordfence plugin.
Entering numbers code, it doesn't show black text in fields, so it can't be seen.

The most important are next 2 pictures, I use the mycryptocheckout plugin and it doesn't show black text (wallet address) in that box.

I think the text + numbers are all white or brown or match the background color of that area, so you have to hover mouse or CTRL+A to see
1.png
2.png
2-1.png
2-2.png


3.png
4.png


Elementor
5.png
 
I have a big problem with " Text Colour" in fields. ( I think Theme setting -> Styles and Colors )
My website uses dark themes and white text

As the first 4 pictures, I use the Wordfence plugin.
Entering numbers code, it doesn't show black text in fields, so it can't be seen.

The most important are next 2 pictures, I use the mycryptocheckout plugin and it doesn't show black text (wallet address) in that box.

I think the text + numbers are all white or brown or match the background color of that area, so you have to hover mouse or CTRL+A to see
View attachment 254783View attachment 254784View attachment 254785View attachment 254786

View attachment 254787View attachment 254788

Elementor
View attachment 254789
Inspect that login page and look in the body for class names.. Do you see any specific class for login? Like <body class=“login-page”> for example.

Make sure this class is unique to that page, or other pages will be affected too.

Once you have found the class out, let’s say login-page, add the following css in your styles.css.

Code:
.login-page input, .login-page textarea {
color: #000000;
}

and after adding the rule, clear your site cache. That should do it.
 
Back
Top