Hi Arturo,
This is a dupe --- see this thread: https://litmus.com/community/discussions/7032-copy-right-symbols-blue-in-ios-gmail-app
Confirming this is also an issue on the following:
Gmail App (iOS 10.3.2)
Inbox by Gmail (iOS 10.3.2)
Google Inbox (Android 6.0)
This is not isolated to Litmus' testing/simulator platform, have recreated the same issue on 3 separate devices.
Edit: This is also effecting ™ symbols
In my experience, the following seems to work best.
<table>
<!--[if (mso 12|mso 14|mso15)]><!-- -->
<tr class="staticBanner">
<td class="static" align="">
Static
</td>
</tr>
<!--<![endif]-->
<!--[if (!mso 12|!mso 14|!mso15)]><!-- -->
<tr>
<td class="animate" align="" style="">
Animated
</td>
</tr>
<!--<![endif]-->
</table>
For some reason Outlook for OSX doesn't play nice with the conditional statements, so I hide duplicate row using @media queries:
<style type="text/css">
@media screen and (-webkit-min-device-pixel-ratio:0) {
.staticBanner { display:none !important; }
}
</style>
Also, while this may be a personal preference --- others may suggest/prefer other methods, I like to wrap the entire <tr> block within the conditional statements when possible.
Can you share your HTML on codepen (or a similar service)?
You should be able to use conditional statements to target Outlook - I'm not 100% certain, but they should only target Windows based versions. Try this code for Outlook '16
<!--[if mso 16]>
<style type="text/css">
/* Some CSS */
</style>
<![endif]-->
More info available here: https://litmus.com/community/learning/8-outlook-overview
Both are Outlook 2016, just different operating systems.
http://greatergood.com/email/good_outlook_2016.png - Outlook 2016 on Mac OSX 10.*
http://greatergood.com/email/bad_outlook_2016.png - Outlook 2016 on Windows 7