Hi there,
Your theme has forced ALL inputs to have a “white” font color. But that can be easily overwritten with this custom CSS snippet:
form[id*=give-form] input {
color: black;
}
Add that to the bottom of your theme’s styles.css file; or go to “Appearance > Customize > Custom CSS” and add it to the bottom of that setting. For more detailed info on adding custom CSS, see here: https://givewp.com/documentation/resources/handling-custom-css-in-wordpress/
Thanks!
Hi,
Thank you for your response. I did this, but it didn’t change anything. For some reason, you can see the fonts that are typed in the “personal info” boxes (it shows as black), but it is still showing as white for dollar amount input box.
Hi there, I see now. Your theme has an additional style forcing that font color when the input is focused as well. Update the snippet above with this instead:
form[id*=give-form] input, form[id*=give-form] input:focus {
color: black;
}
Thanks!