NOW_Antonio
NOW_Antonio

Reputation: 87

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; }

Upvotes: 2

Views: 5407

Answers (1)

Matt Maclennan
Matt Maclennan

Reputation: 1304

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!

Upvotes: 2

Related Questions