<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>EmailCoders &#187; Code Tips</title>
	<atom:link href="https://emailcoders.com/category/code-tips/feed/" rel="self" type="application/rss+xml" />
	<link>https://emailcoders.com</link>
	<description>Responsive HTML Email Coders in the USA</description>
	<lastBuildDate>Wed, 15 Apr 2015 16:30:04 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>https://wordpress.org/?v=4.2.38</generator>
	<item>
		<title>Quick Email Coding Tips for Outlook</title>
		<link>https://emailcoders.com/quick-email-coding-tips-for-outlook/</link>
		<comments>https://emailcoders.com/quick-email-coding-tips-for-outlook/#comments</comments>
		<pubDate>Wed, 24 Sep 2014 01:42:14 +0000</pubDate>
		<dc:creator><![CDATA[emailcoders]]></dc:creator>
				<category><![CDATA[Code Tips]]></category>

		<guid isPermaLink="false">http://emailcoders.com/cms/?p=3444</guid>
		<description><![CDATA[Tall images will be cropped in Outlook. Outlook truncates the upper portion of all images higher than 1728px from the top-down. So, if your image is 250px longer than the 1728px limit, 250px will get cropped off the top. We’ve also seen Outlook re-scale an image so that its max height is 1728px. We suggest [&#8230;]]]></description>
				<content:encoded><![CDATA[<p><strong>Tall images will be cropped in Outlook.</strong><br />
Outlook truncates the upper portion of all images higher than 1728px from the top-down. So, if your image is 250px longer than the 1728px limit, 250px will get cropped off the top. We’ve also seen Outlook re-scale an image so that its max height is 1728px. We suggest that you crop your images and stack them on top of each other.</p>
<p><strong>Images with dimensions defined in HTML may render incorrectly.</strong><br />
Stretched images (e.g., bars, borders, gradients, etc.) may not render correctly. All graphics should have their correct dimensions in the file properties. Do not rely on HTML-defined dimensions for images that are critical to the email’s layout.</p>
<p><strong>Animated GIFs aren&#8217;t supported by Outlook.</strong><br />
Outlook does not support animated GIFs, instead it only shows the first slide of your animation so make sure the most important call to action is on that slide.</p>
]]></content:encoded>
			<wfw:commentRss>https://emailcoders.com/quick-email-coding-tips-for-outlook/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Bullet lists in HTML Emails</title>
		<link>https://emailcoders.com/bullet-lists-in-html-emails/</link>
		<comments>https://emailcoders.com/bullet-lists-in-html-emails/#comments</comments>
		<pubDate>Thu, 24 Oct 2013 01:08:55 +0000</pubDate>
		<dc:creator><![CDATA[emailcoders]]></dc:creator>
				<category><![CDATA[Code Tips]]></category>

		<guid isPermaLink="false">http://emailcoders.com/cms/?p=3431</guid>
		<description><![CDATA[The safest way to use ordered and unordered lists in HTML Email is to use a table with two columns. Avoid using &#60; ul &#62; and &#60; ol &#62; tags since they do not render consistently across platforms. &#60;table border="0" cellpadding="0" cellspacing="0" width="100%"&#62; &#60;tr&#62; &#60;td style="padding-bottom:5px; line-height:20px;" valign="top" width="15"&#62;&#60;strong&#62;&#38;bull;&#60;/strong&#62; &#60;/td&#62; &#60;td align="left" style="padding-bottom:5px; line-height:20px;"&#62; Lorem [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>The safest way to use ordered and unordered lists in HTML Email is to use a table with two columns.<br />
Avoid using &lt; ul &gt; and &lt; ol &gt; tags since they do not render consistently across platforms.</p>
<pre><code>&lt;table border="0" cellpadding="0" cellspacing="0" width="100%"&gt;
&lt;tr&gt;
&lt;td style="padding-bottom:5px; line-height:20px;" valign="top"
width="15"&gt;&lt;strong&gt;&amp;bull;&lt;/strong&gt;
&lt;/td&gt;
&lt;td align="left" style="padding-bottom:5px; line-height:20px;"&gt;
Lorem Ipsum 1&lt;/td&gt;
&lt;/tr&gt;</code>

&lt;tr&gt;
&lt;td style="padding-bottom:5px; line-height:20px;" valign="top"
width="15"&gt;&lt;strong&gt;&amp;bull;&lt;/strong&gt;
&lt;/td&gt;
&lt;td align="left" style="padding-bottom:5px; line-height:20px;"&gt;
Lorem Ipsum 2&lt;/td&gt;
&lt;/tr&gt;

&lt;tr&gt;
&lt;td style="padding-bottom:5px; line-height:20px;" valign="top"
width="15"&gt;&lt;strong&gt;&amp;bull;&lt;/strong&gt;
&lt;/td&gt;
&lt;td align="left" style="padding-bottom:5px; line-height:20px;"&gt;
Lorem Ipsum 3&lt;/td&gt;
&lt;/tr&gt;

&lt;tr&gt;
&lt;td style="padding-bottom:5px; line-height:20px;" valign="top"
width="15"&gt;&lt;strong&gt;&amp;bull;&lt;/strong&gt;
&lt;/td&gt;
&lt;td align="left" style="padding-bottom:5px; line-height:20px;"&gt;
Lorem Ipsum 4&lt;/td&gt;
&lt;/tr&gt;
&lt;/table&gt;

</pre>
<p>Final result:</p>
<table border="0" width="100%" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td style="padding-bottom: 5px; line-height: 20px;" valign="top" width="15"><strong>•</strong></td>
<td style="padding-bottom: 5px; line-height: 20px;" align="left">Lorem Ipsum 1</td>
</tr>
<tr>
<td style="padding-bottom: 5px; line-height: 20px;" valign="top" width="15"><strong>•</strong></td>
<td style="padding-bottom: 5px; line-height: 20px;" align="left">Lorem Ipsum 2</td>
</tr>
<tr>
<td style="padding-bottom: 5px; line-height: 20px;" valign="top" width="15"><strong>•</strong></td>
<td style="padding-bottom: 5px; line-height: 20px;" align="left">Lorem Ipsum 3</td>
</tr>
<tr>
<td style="padding-bottom: 5px; line-height: 20px;" valign="top" width="15"><strong>•</strong></td>
<td style="padding-bottom: 5px; line-height: 20px;" align="left">Lorem Ipsum 4</td>
</tr>
</tbody>
</table>
]]></content:encoded>
			<wfw:commentRss>https://emailcoders.com/bullet-lists-in-html-emails/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
