Mailchimp and Gmail: text color issue

淺唱寂寞╮ 提交于 2021-01-28 08:16:31

问题


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


回答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!



来源:https://stackoverflow.com/questions/32505103/mailchimp-and-gmail-text-color-issue

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!