Closed lee-tomblin closed 10 years ago
When you're trying to hide content for Outlook with the comment tag:
<!--[if !mso]><!-- -- -->
It turns it into a style tag, example:
<!--[if !mso]><!-- -- --><div class="is-mobile">This will only show on mobile, and not outlook</div><!--<![endif]-->
Gets parsed to:
<!--[if !mso]><style type="text/css"></style><!--<![endif]-->
Is there a way to avoid this?
Good catch, just fixed it - https://github.com/yargalot/Email-Builder/pull/24.
Nice, thanks.
Awesome job with this.
When you're trying to hide content for Outlook with the comment tag:
<!--[if !mso]><!-- -- -->
It turns it into a style tag, example:
<!--[if !mso]><!-- -- --><div class="is-mobile">This will only show on mobile, and not outlook</div><!--<![endif]-->
Gets parsed to:
<!--[if !mso]><style type="text/css"></style><!--<![endif]-->
Is there a way to avoid this?