• The font on my WordPress site is white with a dark background. When I put the MailChimp form on my site, the css for the site makes the font they enter in the form white which means it can’t be seen.

    I need it to simply be black. I don’t know how to style the font color input into a MailChimp form. Would someone mind giving me simple instructions?

    Thanks so much!

    https://wordpress.org/plugins/mailchimp/

Viewing 1 replies (of 1 total)
  • Hi there thundersbe,

    It sounds like some additional styles may need to be added to the form fields using CSS to make sure that they get the correct styles.

    The class of the input fields with this plugin is mc_input, so you can add to the existing .mc_input CSS in the mailchimp_widget.php file or you can add something like this to your page’s general CSS:

    <style>
    	.mc_input {
    		color: #000000;
    	}
    </style>

    Let me know if you need any additional assistance!

    -Kath

Viewing 1 replies (of 1 total)

The topic ‘Changing Input Font’ is closed to new replies.