• Resolved WPNewbie9090

    (@wpnewbie9090)


    Hi,

    How can we change the text color of the mail chimp form? We tried the color below but it doesn’t seem to be working:

    <a id="newsletter"> </a>
    <p>
        <input type="text" name="FNAME" placeholder="Your first name" style="color:#c2c4c5">
    </p><p>
        <input type="email" name="EMAIL" placeholder="Your email address" style="color:#c2c4c5" required="required">
    </p><p>
        <input type="submit" value="Subscribe">
    </p>

    Thanks

    https://www.ads-software.com/plugins/mailchimp-for-wp/

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Contributor Harish Chouhan

    (@hchouhan)

    Hello WPNewbie9090,

    Are you trying to change the text color or the color of the placeholder text? The above code should have worked for text color. In case it does not then your theme is probably setting the color. In which case you can use this code:

    <a id="newsletter"> </a>
    <p>
        <input type="text" name="FNAME" placeholder="Your first name" style="color:#c2c4c5 !important;">
    </p><p>
        <input type="email" name="EMAIL" placeholder="Your email address" style="color:#c2c4c5 !important" required="required">
    </p><p>
        <input type="submit" value="Subscribe">
    </p>

    Let me know if that works.

    Plugin Contributor Harish Chouhan

    (@hchouhan)

    Hello WPNewbie9090,

    I am marking this ticket as resolved as we have not received any reply. However, if your issue is still not resolved, please feel free to mark it as unresolved and provide us more details.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘changing’ is closed to new replies.