1

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

NOW_Antonio
  • 77
  • 1
  • 10

1 Answers1

1

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!

Matt Maclennan
  • 1,266
  • 13
  • 40
  • Thank you! Solved. But how come in Gmail text is not aligned as i said in HTML? – NOW_Antonio Sep 10 '15 at 15:06
  • Good stuff! If you could mark the tick, that would be great! Gmail only supports inline CSS, so anything you put in the style tags won't be supported. So aligning stuff using `align` and `float` has to be done on the HTML tags inline unfortunately! – Matt Maclennan Sep 10 '15 at 15:09