In an effort to improve support for legacy Blackberrys, we made the decision to take out the meta viewport tag
<meta name="viewport" content="width=device-width, initial-scale = 1.0, maximum-scale = 1.0" />
from our HTML emails. Some major email testing blogs have mentioned that this tag could potentially lead to blank screens.
We noticed during testing that removing the tag did cause some issues with how the email displayed on Windows Phone HTC HD7 devices. You can view the results of our Litmus test here: () With the tag present, the email appeared at 100% zoom, while without it, the email was zoomed out to fit the screen. This seemed to only be a problem with this particular device and not others.
We are now exploring alternative CSS techniques to replace the tag and work around this issue. While the meta viewport tag is commonly used in popular HTML email boilerplate templates, we have found that using -webkit-text-size-adjust: none;
can sometimes result in blank screens on Blackberry devices.
We have experimented with various solutions such as media queries and zoom settings, but there is a concern that these adjustments may impact other devices with similar screen sizes and resolutions. It's yet another tradeoff that comes with coding for emails, but we wanted to raise awareness about this issue since there isn't much information available on it.