Search code examples
cssgmailmailchimp

Mailchimp and Gmail: text color issue


i've a problem with Mailchimp, but only on Gmail. When i send test email text looks "purple" and not "white" as i wrote into code ( #FFFFFF ).

I write it into the style="..." and into "style" section mcnTextContent { color: #FFFFFF !important; }


Solution

  • As mentioned here, Gmail doesn't support the <style> tag, therefore, you would have to code your color inline like this for example...

    <span style="color:#ffffff;">TEXT HERE</span>
    

    However, as part of your email build, I'd recommend you use an inliner before you send the email out. This ensures maximum compatibility for the likes of Gmail etc.

    Hope that helps!