Home Forums WoodMart support forum Cannot Fill Form Field for Subscribers

Cannot Fill Form Field for Subscribers

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #143038

    Cris
    Participant

    Hello,
    Using the plugin Mailchimp for WordPress, I created a simple form to capture e-mail subscribers. When I add it to my site however, the form loses the white fill in the form field and appears to be transparent, which is very hard to see on the site. How can I fill the form field with a color (such as white)? See picture attached.

    I’ve tried adjusting the all the various fields within the “Styles and Colors” customization sidebar, but have not found any success yet.

    Thank you!

    Attachments:
    You must be logged in to view attached files.
    #143136

    Hello,

    To change the mailchimp form fields placeholder color as well as text color. Please insert the below css in Theme Settings >> CUSTOM CSS >> Global Custom CSS:

    .mc4wp-form-fields input[type=email]::-webkit-input-placeholder {
      color: red;
    }
    
    .mc4wp-form-fields input[type=email] {
      color: red;
    }

    You can change the color red to white or any other color which you want to use. I just use red to set an example for you.

    Screenshot: https://jmp.sh/giZFmP0

    Result: https://jmp.sh/7zCIR5y

    Best Regards.

    #143202

    Cris
    Participant

    Thank you for the quick reply! When I enter the CSS code you provided, it only changed the text font color, but left the background color transparent. Building on that foundation, I slightly changed the code you provided to the below and it worked. Thank you for the help!

    .mc4wp-form-fields input[type=email]::-webkit-input-placeholder {
      background-color: #ffffff;
    }
    
    .mc4wp-form-fields input[type=email] {
      background-color: #ffffff;
    }
    #143205

    Sounds Great! That you have solved the issue. You are the BEST!!!!!

    Thanks for contacting us.
    Have a great day.

    Topic Closed,
    Best Regards.

Viewing 4 posts - 1 through 4 (of 4 total)

The topic ‘Cannot Fill Form Field for Subscribers’ is closed to new replies.