<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>Creative glo</title>
	
	<link>http://www.creativeglo.co.uk</link>
	<description>Website design, HTML and CSS coding, WordPress theme design and development</description>
	<lastBuildDate>Sun, 07 Mar 2010 18:53:21 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/CreativeGlo" /><feedburner:info uri="creativeglo" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item>
		<title>Guide to coding HTML emails</title>
		<link>http://feedproxy.google.com/~r/CreativeGlo/~3/H3Gp0o-zouw/</link>
		<comments>http://www.creativeglo.co.uk/blog/email-design/guide-to-coding-html-emails/#comments</comments>
		<pubDate>Sun, 07 Mar 2010 18:53:21 +0000</pubDate>
		<dc:creator>james</dc:creator>
				<category><![CDATA[Email design]]></category>
		<category><![CDATA[HTML]]></category>

		<guid isPermaLink="false">http://localhost/~james/cg/?p=1031</guid>
		<description><![CDATA[This article sets out guidelines for buiding HTML emails which have been developed over several years and a great many email broadcasts. Following these guidelines should result in emails which render correctly in Outlook 2007, yahoo mail, gmail, hotmail and Apple Mail.]]></description>
			<content:encoded><![CDATA[<p>The rules set out below for building HTML emails have been developed over several years and many, many email broadcasts. This article <a href="http://www.creativeglo.co.uk/blog/email-design/html-email-design-and-coding-tips-part-2/" title="HTML email design and coding tips part II">supersedes this older one</a>.</p>
<p>Following the guidelines set out below should result in emails which render correctly in Outlook 2007, yahoo mail, gmail, hotmail and Apple Mail.</p>
<ol>
<li>Use a vailid doctype</li>
<li>Specify a charset</li>
<li>Use tables for the layout</li>
<li>Nest tables</li>
<li>Use inline styles, not stylesheets</li>
<li>Avoid background images</li>
<li>Avoid placing important information within images</li>
<li>Use padding and widths to obtain correct spacing</li>
<li>Know when to use border and when to make a fake border</li>
<li>Avoid using movies, Flash, JavaScript, rollover images or forms</li>
</ol>
<p>These rules may seem backward and strange but they provide a solid foundation for coding emails which will render reliably.</p>
<h2>Resoning behind these guidelines</h2>
<h3>Use a valid doctype</h3>
<p>Although the doctype will be stripped out by online email clients, such as hotmail, and by some types of email broadcasting software, it’s still worth including as it enables the HTML to be tested for validity prior to sending. Using XHTML transitional helps ensure the coding is nice and clean.</p>
<h3>Specify a charset</h3>
<p>Declaring a charset facilitates pre-send testing and helps keep coding consistent.</p>
<h3>Use tables for the layout</h3>
<p>Following the release of Outlook 2007, Microsoft switched the rendering engine from Internet Explorer to Word. In spite of <a class="external" rel="nofollow" href="http://www.email-standards.org/">an ongoing campaign to create email standards,</a> there seems no prospect of this being changed. As you might imagine, Word is not good at rendering HTML &#8211; Divs, link styles and background images, and various other things suffer.</p>
<h3>Nest Tables</h3>
<p>Split or combined cells are a nightmare to navigate though and alter in HTML, and they don&#8217;t render well in some email clients. Many will disagree with this, saying that nested tables break and slow down rendering. However, I’ve found this method to be both totally reliable with regard to rendering, and much easier to manipulate when making layout changes.</p>
<h3>Use inline styles</h3>
<p>Gmail and Lotus notes will not support style sheets. Additionally Hotmail is shaky when it comes to applying styles that are not inline. Many email clients and email broadcasting applications strip out the head of the email. The most reliable method of applying styles is inline on each individual element. Giving each paragraph tag an inline style specifying font size, colour and so on, is the most dependable method.</p>
<h3>Avoid using background images</h3>
<p>Outlook 2007 has very unreliable background image support. Some people claim to have got background images to display in Outlook 2007. Indeed when testing, you may see them in Outlook 2007 on your PC, but others may not.</p>
<h3>Avoid placing important information within images</h3>
<p>If images are not loaded by default in Outlook 2007, the recipient will see a long security message followed by the alt tag. Aside from this, if the ratio of images to text is deemed too high, the email could be blocked by some spam filters. If the message is important, place it in real HTML text.</p>
<h3>Use padding and widths to obtain correct spacing</h3>
<p>Email rendering can be made very reliable using these rules:</p>
<ol>
<li>Ensure that images, the main containing cells of tables, and the tables themselves have a width.</li>
<li>Use padding rather than empty cells to provide gutters and space between items.</li>
<li>Place padding on parent table cells rather than the items inside. So, if a space of 16px is required below a paragraph, place a padding value of 16px on the bottom of the containing table cell.</li>
<li>Use longhand CSS for border margin and padding values: padding-top; x; padding-right: x; etc.</li>
<li>The rendering of paragraphs varies widely across email clients. Regrettably the most dependable method of getting the correct spacing around them is to place each heading and paragraph in a table cell. This seems laborious, but in practice it’s not too bad. Giving the containing table cell margins of zero top and bottom will prevent Hotmail adding unwanted extra spacing above and below.</li>
<li>Outlook 2007 will calculate the width of a table cell and then add the padding to the width <em>unless</em> a width is specified. Once a width has been set, the padding will be applied inside the width.</li>
<li>To stop hotmail placing an unwanted space below images, give the images a float value, either left or right, and display them inline.</li>
</ol>
<h3>Borders and fake borders</h3>
<p><em>Nearly</em> consistent borders can be achieved by placing left and right borders on the individual &lt;td&gt;s in each row. Note that the widths of the border will be added to the overall width of the table. So if a table is 200px wide and a border of 1px each side is added, the table width needs to be reset to 198px. However gmail will still get this wrong. While the layout won&#8217;t break on a 1px border, close examination will reveal that one border has been pushed out by a pixel.</p>
<p>The most reliable way to get borders to behave consistently is to wrap the content requiring the border inside the central column of another table. The left and right columns of the containing table should be made of empty cells whose width equals required border width, and with the background colour set to the required border colour. The attached HTML file contains an example of this technique.</p>
<h3>Avoid using movies, Flash, JavaScript, rollover images or forms</h3>
<p>Movies, Flash, JavaScripts and other kinds of interactivity don’t work reliably in emails. It’s far safer to link to movies, surveys, forms and other interactive things.</p>
<h2>In conclusion</h2>
<p>It’s sad that all the wonderful techniques available when laying out web pages are not available when building emails. However, the rules outlined above hopefully offer a guide to producing emails which will render consistently across many popular email clients. Remember, when it comes to emails content is king…</p>
<h2>Futher reading &amp; resources</h2>
<p>All email clients have their quirks, Campaign Monitor very kindly maintain a <a class="external" rel="nofollow" href="http://www.campaignmonitor.com/css/">list  of supported and unsupported features,</a> and the Email Standards Project <a class="external" rel="nofollow" href="http://www.email-standards.org/">maintain up to date assesments of email client rendering performance.</a></p>
<p><a href="http://www.creativeglo.co.uk/wp-content/uploads/email-code-example.html" target="_blank">Example HTML file.</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.creativeglo.co.uk/blog/email-design/guide-to-coding-html-emails/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.creativeglo.co.uk/blog/email-design/guide-to-coding-html-emails/</feedburner:origLink></item>
		<item>
		<title>MAPS</title>
		<link>http://feedproxy.google.com/~r/CreativeGlo/~3/oa2WNlkv_Z0/</link>
		<comments>http://www.creativeglo.co.uk/work/maps/#comments</comments>
		<pubDate>Sat, 16 Jan 2010 20:42:47 +0000</pubDate>
		<dc:creator>james</dc:creator>
				<category><![CDATA[Work]]></category>
		<category><![CDATA[coding]]></category>
		<category><![CDATA[Websites]]></category>

		<guid isPermaLink="false">http://www.creativeglo.co.uk/?p=1061</guid>
		<description><![CDATA[Interface for web based data analysis tool.]]></description>
			<content:encoded><![CDATA[Interface for web based data analysis tool.]]></content:encoded>
			<wfw:commentRss>http://www.creativeglo.co.uk/work/maps/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<enclosure url="http://www.creativeglo.co.uk/wp-content/uploads/maps-300x218.jpg" length="" type="image/jpg" />	<feedburner:origLink>http://www.creativeglo.co.uk/work/maps/</feedburner:origLink></item>
		<item>
		<title>ISA Rules change banner</title>
		<link>http://feedproxy.google.com/~r/CreativeGlo/~3/sWF9a8A1iA4/</link>
		<comments>http://www.creativeglo.co.uk/work/isa-rules-change-banner/#comments</comments>
		<pubDate>Sat, 26 Dec 2009 17:54:43 +0000</pubDate>
		<dc:creator>james</dc:creator>
				<category><![CDATA[Work]]></category>
		<category><![CDATA[Websites]]></category>

		<guid isPermaLink="false">http://localhost/~james/cg/?p=1008</guid>
		<description><![CDATA[<p>Banner, for home page of client&#8217;s website, promoting tax rule changes. Design fitted existing banner space and followed existing house styles.</p>
]]></description>
			<content:encoded><![CDATA[<p>Banner, for home page of client&#8217;s website, promoting tax rule changes. Design fitted existing banner space and followed existing house styles.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.creativeglo.co.uk/work/isa-rules-change-banner/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<enclosure url="http://www.creativeglo.co.uk/wp-content/uploads/isa-rules-230x300.jpg" length="" type="image/jpg" />	<feedburner:origLink>http://www.creativeglo.co.uk/work/isa-rules-change-banner/</feedburner:origLink></item>
		<item>
		<title>Income guide</title>
		<link>http://feedproxy.google.com/~r/CreativeGlo/~3/l1VcDurDiUg/</link>
		<comments>http://www.creativeglo.co.uk/work/income-guide/#comments</comments>
		<pubDate>Sat, 26 Dec 2009 17:46:52 +0000</pubDate>
		<dc:creator>james</dc:creator>
				<category><![CDATA[Work]]></category>
		<category><![CDATA[Websites]]></category>

		<guid isPermaLink="false">http://localhost/~james/cg/?p=1003</guid>
		<description><![CDATA[<p>Web page banner to promote client&#8217;s publication. Banner contatainer and call to action/link had to employ existing house style.</p>
]]></description>
			<content:encoded><![CDATA[<p>Web page banner to promote client&#8217;s publication. Banner contatainer and call to action/link had to employ existing house style.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.creativeglo.co.uk/work/income-guide/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<enclosure url="http://www.creativeglo.co.uk/wp-content/uploads/income-guide-261x300.jpg" length="" type="image/jpg" />	<feedburner:origLink>http://www.creativeglo.co.uk/work/income-guide/</feedburner:origLink></item>
		<item>
		<title>openbusiness</title>
		<link>http://feedproxy.google.com/~r/CreativeGlo/~3/HD_3ZnJuJaY/</link>
		<comments>http://www.creativeglo.co.uk/work/openbusiness/#comments</comments>
		<pubDate>Mon, 06 Jul 2009 15:21:12 +0000</pubDate>
		<dc:creator>james</dc:creator>
				<category><![CDATA[Work]]></category>
		<category><![CDATA[Websites]]></category>
		<category><![CDATA[WordPress site]]></category>

		<guid isPermaLink="false">http://localhost/~james/cg/?p=927</guid>
		<description><![CDATA[Redesign and reconfiguration of this WordPress based site, including installation of a directory of opensource businesses.]]></description>
			<content:encoded><![CDATA[<p>Redesign, upgrade and update of an existing WordPress site. Theme updated, from very old version of WordPress, to version 2.8 compatibility. Complete reinstall and addition of security features removed spam links and bandwidth theft , cutting bandwidth use by about 50%.  While the site banner was retained, the main page body was given a makeover with a clean, minimal layout. Article summaries were automated using a function which looks for an excerpt and, if it doesn’t find one, makes one. Image resizing and thumbnail generation are handled using phpthumb, via the autothumb plugin. The open100 directory uses freshout’s flutter plugin to provide a template for directory entries. An alternative to flutter could be the Pods CMS plugin.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.creativeglo.co.uk/work/openbusiness/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<enclosure url="http://www.creativeglo.co.uk/wp-content/uploads/openbusiness-266x300.jpg" length="" type="image/jpg" />	<feedburner:origLink>http://www.creativeglo.co.uk/work/openbusiness/</feedburner:origLink></item>
		<item>
		<title>upForAnything</title>
		<link>http://feedproxy.google.com/~r/CreativeGlo/~3/oliszXF6ZjY/</link>
		<comments>http://www.creativeglo.co.uk/work/upforanything/#comments</comments>
		<pubDate>Mon, 06 Jul 2009 14:49:59 +0000</pubDate>
		<dc:creator>james</dc:creator>
				<category><![CDATA[Work]]></category>
		<category><![CDATA[Websites]]></category>

		<guid isPermaLink="false">http://localhost/~james/cg/?p=918</guid>
		<description><![CDATA[<p>One of a series of dating website designs for use on a 3rd party hosted, templated based, dating site engine. Each set of templates comprised visuals for the home page and a sample  inner page. Design only.</p>
]]></description>
			<content:encoded><![CDATA[<p>One of a series of dating website designs for use on a 3rd party hosted, templated based, dating site engine. Each set of templates comprised visuals for the home page and a sample  inner page. Design only.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.creativeglo.co.uk/work/upforanything/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.creativeglo.co.uk/work/upforanything/</feedburner:origLink></item>
		<item>
		<title>cheekyMatch</title>
		<link>http://feedproxy.google.com/~r/CreativeGlo/~3/lc3yn3g9QdY/</link>
		<comments>http://www.creativeglo.co.uk/work/cheekymatch/#comments</comments>
		<pubDate>Mon, 15 Jun 2009 19:39:23 +0000</pubDate>
		<dc:creator>james</dc:creator>
				<category><![CDATA[Work]]></category>
		<category><![CDATA[Websites]]></category>

		<guid isPermaLink="false">http://localhost/~james/cg/?p=908</guid>
		<description><![CDATA[<p>One of a series of dating website designs for use on a 3rd party hosted, templated based, dating site engine. Each set of templates comprised visuals for the home page and a sample  inner page. Design only.</p>
]]></description>
			<content:encoded><![CDATA[<p>One of a series of dating website designs for use on a 3rd party hosted, templated based, dating site engine. Each set of templates comprised visuals for the home page and a sample  inner page. Design only.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.creativeglo.co.uk/work/cheekymatch/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.creativeglo.co.uk/work/cheekymatch/</feedburner:origLink></item>
		<item>
		<title>Airmiles</title>
		<link>http://feedproxy.google.com/~r/CreativeGlo/~3/huWaDotbkOg/</link>
		<comments>http://www.creativeglo.co.uk/work/airmiles/#comments</comments>
		<pubDate>Wed, 22 Apr 2009 10:00:53 +0000</pubDate>
		<dc:creator>james</dc:creator>
				<category><![CDATA[Work]]></category>
		<category><![CDATA[Email]]></category>

		<guid isPermaLink="false">http://www.creativeglo.co.uk/?p=854</guid>
		<description><![CDATA[Redesign of existing email, following branding guidelines. Follow link for before and after views.]]></description>
			<content:encoded><![CDATA[<p><a rel="lightbox" href="wp-content/gallery/email/airmiles-old-reference.jpg">This is a redesign of this.</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.creativeglo.co.uk/work/airmiles/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.creativeglo.co.uk/work/airmiles/</feedburner:origLink></item>
		<item>
		<title>adultplayuk</title>
		<link>http://feedproxy.google.com/~r/CreativeGlo/~3/4ycZlU2rejE/</link>
		<comments>http://www.creativeglo.co.uk/work/adultplayuk/#comments</comments>
		<pubDate>Wed, 22 Apr 2009 09:03:21 +0000</pubDate>
		<dc:creator>james</dc:creator>
				<category><![CDATA[Work]]></category>
		<category><![CDATA[Websites]]></category>

		<guid isPermaLink="false">http://www.creativeglo.co.uk/?p=792</guid>
		<description><![CDATA[<p>One of a series of designs of niche dating sites on a 3rd party hosted, templated based, dating site engine. Each set of templates comprised a home page and inner page.</p>
]]></description>
			<content:encoded><![CDATA[<p>One of a series of designs of niche dating sites on a 3rd party hosted, templated based, dating site engine. Each set of templates comprised a home page and inner page.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.creativeglo.co.uk/work/adultplayuk/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.creativeglo.co.uk/work/adultplayuk/</feedburner:origLink></item>
		<item>
		<title>toyboyboutique</title>
		<link>http://feedproxy.google.com/~r/CreativeGlo/~3/rlU_pAJ3PZI/</link>
		<comments>http://www.creativeglo.co.uk/work/toyboyboutique/#comments</comments>
		<pubDate>Wed, 22 Apr 2009 09:03:04 +0000</pubDate>
		<dc:creator>james</dc:creator>
				<category><![CDATA[Work]]></category>
		<category><![CDATA[Websites]]></category>

		<guid isPermaLink="false">http://www.creativeglo.co.uk/?p=788</guid>
		<description><![CDATA[<p>One of a series of designs of niche dating sites on a 3rd party hosted, templated based, dating site engine. Each set of templates comprised a home page and inner page.</p>
]]></description>
			<content:encoded><![CDATA[<p>One of a series of designs of niche dating sites on a 3rd party hosted, templated based, dating site engine. Each set of templates comprised a home page and inner page.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.creativeglo.co.uk/work/toyboyboutique/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.creativeglo.co.uk/work/toyboyboutique/</feedburner:origLink></item>
	</channel>
</rss>
