Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
 <style type="text/css">/* FIX FOR OWA */         
.bdyItmPrt IMG {display:block; !important}
.bdyItmPrt table IMG {display:block; !important}
.bdyItmPrt {  font-size: 0; word-wrap: break-word; }</style>

Text resizing issues on mobile (iOS) devices

  • If text is being resized on iPhones or iPads, add this style to the header of the email to prevent iOS from resizing the text
Code Block
<style type="text/css">
	body {
    	-webkit-text-size-adjust: 100%;
     	-ms-text-size-adjust:none;
	}
</style>

...