Mailchimp form field query

Hi guys
I have a Mailchimp form that, after adding the child theme and changing to dark mode, has made the fields black.


What is the correct CSS to address this?
Here is my attempt

Thanks
Phil

Hi Phil,

Thanks for reaching out.

In the given screenshot, it can be seen that there is an error in your custom CSS. You tried to comment out the line using ///, but for CSS it requires /* */. Please resolve it, and also add the Email field selector with the following code to set the background color.

.mc-field-group input[type="text"]{
    color:#000;
    background-color:#fff;
}

Please remember that the above code will work if copied as it is and doesn’t conflict with any existing style.
Please note that the code provided serves only as a guide to help you get started with custom coding on your own if there’s no option offered in our theme or the products we bundle.
We really do not provide support for custom codes, which means we can’t fix it in case it conflicts with something on your site, nor will we enhance it. Further customization should be directed to a third-party developer, or you can avail yourself of One, where we answer the questions beyond normal theme support.

Thanks

Thanks, Tristup
That is the ant’s pants.
:+1: :+1: :grinning:

Phil

You are most welcome, Phil.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.