KM iPhone 2G/3G/3GS Media Query Shared by Kevin Mandeville, 2015-08-19 12:41:44 Tagged: Media Query, iPhone Snippet Trigger Manage Snippets Please enter a valid trigger The text that, when typed and followed by a tab will trigger the insertion of the snippet code. Added to your library. Manage your snippets. Copied to Clipboard Your snippet is out of date. Update snippet @media screen and (min-device-width: 320px) and (max-device-width: 480px) and (-webkit-min-device-pixel-ratio: 1) { {style} } View this Snippet
KM iPhone 4/4S/5/iPhone 6 (zoom view) Media Query Shared by Kevin Mandeville, 2015-08-19 12:42:37 Tagged: Media Query, iPhone Snippet Trigger Manage Snippets Please enter a valid trigger The text that, when typed and followed by a tab will trigger the insertion of the snippet code. Added to your library. Manage your snippets. Copied to Clipboard Your snippet is out of date. Update snippet @media screen and (min-device-width: 320px) and (max-device-width: 568px) and (-webkit-min-device-pixel-ratio: 2) { {style} } View this Snippet
KM iPhone 6 (standard view) + iPhone 6 Plus (zoom view) Media Query Shared by Kevin Mandeville, 2015-08-19 12:45:05 Tagged: Media Query, iPhone 1 Snippet Trigger Manage Snippets Please enter a valid trigger The text that, when typed and followed by a tab will trigger the insertion of the snippet code. Added to your library. Manage your snippets. Copied to Clipboard Your snippet is out of date. Update snippet @media screen and (max-device-width: 375px) and (max-device-height: 667px) { {style} } View this Snippet
KM iPhone 6 Plus (standard view) Media Query Shared by Kevin Mandeville, 2015-08-19 12:44:54 Tagged: Media Query, iPhone 1 Snippet Trigger Manage Snippets Please enter a valid trigger The text that, when typed and followed by a tab will trigger the insertion of the snippet code. Added to your library. Manage your snippets. Copied to Clipboard Your snippet is out of date. Update snippet @media screen and (max-device-width: 414px) and (max-device-height: 776px) { {style} } View this Snippet
AB Issues With Auto-Scaling iOS 10 Shared by Annie Bonsaint, 2017-04-06 14:29:51 Tagged: Hack, iPhone Snippet Trigger Manage Snippets Please enter a valid trigger The text that, when typed and followed by a tab will trigger the insertion of the snippet code. Added to your library. Manage your snippets. Copied to Clipboard Your snippet is out of date. Update snippet adding a “padding:0;” to the <body> tag of your email is a great fix in case your email doesn’t scale correctly. <body style="padding:0"> To disable auto-scaling completely. Here’s the fix: <meta name="x-apple-disable-message-reformatting"> View this Snippet
AB Font-size management on Mobile IOS devices Shared by Annie Bonsaint, 2017-05-01 15:28:18 Tagged: Typography, iPhone Snippet Trigger Manage Snippets Please enter a valid trigger The text that, when typed and followed by a tab will trigger the insertion of the snippet code. Added to your library. Manage your snippets. Copied to Clipboard Your snippet is out of date. Update snippet /* In general, increasing the font size on mobile devices is a good practice, and especially for emails, where reading time is extremely condensed and you need to capture users attention quickly. Font-size management affects the user experience on mobile. Small text that might be easily readable on desktop devices can have a different effect on small screen. IOS devices have issue with font size: Small font sizes are enlarged by default. This can be easily fixed adding this line to your CSS: */ * { -webkit-text-size-adjust: none; } /* Source: https://www.sitepoint.com/golden-rules-mobile-email-design/ */ View this Snippet
CP Fix: iOS 11 Rendering my Email 1/2 the Width of the Screen Shared by Cemre Pacun, 2018-06-13 21:52:02 Tagged: Hack, iPhone Snippet Trigger Manage Snippets Please enter a valid trigger The text that, when typed and followed by a tab will trigger the insertion of the snippet code. Added to your library. Manage your snippets. Copied to Clipboard Your snippet is out of date. Update snippet <meta name="x-apple-disable-message-reformatting" /> View this Snippet
PL Other useful Meta Tags Shared by Paul Lemke, 2018-12-11 13:16:42 Tagged: Boilerplate, iPhone Snippet Trigger Manage Snippets Please enter a valid trigger The text that, when typed and followed by a tab will trigger the insertion of the snippet code. Added to your library. Manage your snippets. Copied to Clipboard Your snippet is out of date. Update snippet <!--Covers a multitude of clients but mostly iOS and Gmail--> <meta name="format-detection" content="email=no"><!--Stop email address from linking on it's own--> <meta name="format-detection" content="date=no"><!--Stop date from linking on it's own--> <meta name="format-detection" content="address=no"><!--Stop address from linking on it's own--> <meta name="format-detection" content="telephone=no"><!--Stop telephone number from linking on it's own--> View this Snippet