<?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>Marketing Forward &#187; design</title>
	<atom:link href="http://www.experian.com/blogs/marketing-forward/tag/design/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.experian.com/blogs/marketing-forward</link>
	<description>Marketing insight and consumer trends from Experian Marketing Services</description>
	<lastBuildDate>Thu, 03 Jan 2013 23:14:53 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.4.2</generator>
		<item>
		<title>Cures For the Common Code: Troubleshooting Your Email Marketing Code Issues</title>
		<link>http://www.experian.com/blogs/marketing-forward/2011/01/05/cures-for-the-common-code-troubleshooting-your-email-marketing-code-issues/</link>
		<comments>http://www.experian.com/blogs/marketing-forward/2011/01/05/cures-for-the-common-code-troubleshooting-your-email-marketing-code-issues/#comments</comments>
		<pubDate>Wed, 05 Jan 2011 21:49:18 +0000</pubDate>
		<dc:creator>Stephen Sharp</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[email marketing]]></category>
		<category><![CDATA[hotmail]]></category>
		<category><![CDATA[yahoo]]></category>

		<guid isPermaLink="false">http://www.emailresponsibly.com/?p=3298</guid>
		<description><![CDATA[Even though coding for email marketing is, in many ways, easier than that of a website, mistakes are very common. Fortunately, these mistakes are easy to troubleshoot, and most are even easier to fix. This handy reference helps HTML coders quickly establish the cause of an error and outlines guidelines for proper email coding.]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.emailresponsibly.com/wp-content/uploads/2010/11/coding_graphic.gif"><img class="size-full wp-image-3306 alignright" src="http://www.emailresponsibly.com/wp-content/uploads/2010/11/coding_graphic.gif" alt="" width="250" height="250" /></a>Even though coding for email marketing is, in many ways, easier than that of a website, mistakes are very common. Fortunately, these mistakes are easy to troubleshoot, and most are even easier to fix.</p>

<p>This handy reference helps HTML coders quickly establish the cause of an error and outlines guidelines for proper email coding.</p>

<p><strong>Why are HTML Errors in Emails Common?</strong></p>

<p>Most issues are simply due to messy code. Very often, code gets re-used on a regular basis to deploy campaigns where the content and images are continually being updated and moved around. This can lead to unintentional duplication or omission of HTML tags, and QA oversights.</p>

<p>There’s also the matter of which email client (Gmail, Hotmail, Outlook 2007, etc.) you’re viewing the code. Knowledge of what works across each of the major email clients will help in determining where rendering errors are occurring and why.<strong> </strong></p>

<p><strong>Checking Code with an HTML Validator</strong></p>

<p>First and foremost, use an HTML validator, like the one built into the CheetahMail application, to check your code. It reviews
the code and generates a report, detailing where errors like missing HTML tags, malformed table structures and alignment issues exist in the code.</p>

<p>In addition, make use of QA options like Mailbox Snapshot tools which provides screenshots of what the code will look like across multiple email clients.</p>

<p><strong>Across the Board:</strong></p>

<p>Some coding issues tend to be universal. Here are a few of them:</p>

<ul><li><span style="text-decoration: underline;">Layout is off by one pixel or pushes out past the border of the design</span><br>
This is usually due to one of the &lt;td&gt; width measurements exceeding the total width of the table. The widths are determined by a simple math equation involving the table cells; usually the math just needs to be corrected. If you add up the individual table cells and they don’t equal the &lt;table&gt;’s width, you’ve found the problem. The problem could also be from the use of CSS to format the design. Certain email clients like Outlook 2007 and Hotmail won’t understand formatting CSS (margin:1px;) and will disregard it. The use of CSS in email is not a best practice.</li>

<li><span style="text-decoration: underline;">Parts of a layout don’t display</span><br>
This can be due to a malformed table structure, incorrect HTML syntax, or colspans that are missing or have incorrect numerical values.</li>

<li><span style="text-decoration: underline;">The background image behind the HTML text repeats</span></br>
The best practice is to design your creative so it doesn’t rely on background images. If a background image must be used, leave some extra space for the HTML text to “grow” when rendered in different email clients. Since various email clients tend to add extra line-spacing to HTML text, this will allow for the table cell holding the HTML text to expand while maintaining the integrity of the design.</li>

<li><span style="text-decoration: underline;">HTML text isn’t aligning properly and is leaving blank areas in the creative</span><br>
Make sure to use aligning properties inside the &lt;td&gt; like valign and align. Without those attributes defined, the HTML text will float in the vertical middle within the &lt;td&gt; tag. If that doesn’t work, review how the overall table is set up, and if the &lt;td&gt; measurements are correct.</li>

<li><span style="text-decoration: underline;">HTML emails in Outlook have a mysterious “break” every 800 pixels from the top of the email down</span><br>
This is caused by the rendering engine that Outlook 2007 and 2010 are built on. Since Microsoft Word inserts an automatic page break every 11 inches, or the length of a letter size document, Outlook 2007 does the same. There’s currently no way to code around this issue without changing the design to use flat colors and white space to counteract the automatic breaking.</li></ul>

<p><strong>Email Clients and Their Personalities</strong></p>

<p>Once HTML code has been developed and validated, testing can begin across the major email clients on both the MAC and PC operating platforms. To know the specific coding pitfalls of the email clients is to have reached true HTML email coding enlightenment!</p>

<p>Here are some examples to watch out for:</p>
<ul><li><span style="text-decoration: underline;">Gmail/Yahoo!</span><br>
Known to be very finicky, Gmail will pick up on the slightest coding mistake and render the email incorrectly. Extra line-spacing is added to HTML text which can break a design. This can be controlled with the correct usage of inline styles to control how the HTML text renders. Background images should be defined within the &lt;td&gt; tag, and NOT within the &lt;body&gt; tag.</li>

<li><span style="text-decoration: underline;">AOL</span><br>
Form functionality like search fields and drop down boxes won’t work. Consider dynamically inserting forms based on domain, or linking to a hosted page offering forms.</li>

<li><span style="text-decoration: underline;">Gmail in Firefox</span><br>
Adds extra “padding” to images which causes extra white space to appear around an image’s border. You can alleviate this by adding an inline style called “style=”display:block;” to the img tag. This work-around removes the imposed padding and fixes the issue.</li>

<li><span style="text-decoration: underline;">Hotmail in Firefox</span><br>
The same issue mentioned above regarding Gmail in Firefox also happens in Hotmail in Firefox.</li><br>

<li><p><span style="text-decoration: underline;">Microsoft Outlook 07</span><br>
Most issues involving Outlook 07 have to do with it being based on the HTML rendering engine of Microsoft Word. Microsoft Word is predominantly for text formatting, so it cannot interpret sophisticated code. Basically, if Microsoft Word can’t render code correctly, chances are Outlook 07 will also have trouble with it.</p>

<ul><li><em>Outlook 07 has no support for background images</em><br>
This is a common problem for clients who use system text with a graphic behind it. Because Outlook 07 won’t display the background, it will just appear as a blank white space. As a quick fix, pick a color out of the design’s background and insert it as a hex color. Another option instead of using system text, is to code that section of the design as an image.</li>

<li><em>Animations do not work in Outlook 07</em><br>
It will only display the first frame. Because of this, it is necessary that the first frame of an animation be a significant one; if the viewer is only capable of seeing the first frame, it needs to capture the basic idea of the message.</li></ul>

<p>Adhering to these simple guidelines will ensure your code will be presented properly across the major email clients. Now get coding!</p>]]></content:encoded>
			<wfw:commentRss>http://www.experian.com/blogs/marketing-forward/2011/01/05/cures-for-the-common-code-troubleshooting-your-email-marketing-code-issues/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Email Gets Rough Around The Edges</title>
		<link>http://www.experian.com/blogs/marketing-forward/2010/06/25/email-that-get-rough-around-the-edges/</link>
		<comments>http://www.experian.com/blogs/marketing-forward/2010/06/25/email-that-get-rough-around-the-edges/#comments</comments>
		<pubDate>Fri, 25 Jun 2010 14:52:11 +0000</pubDate>
		<dc:creator>Experian CheetahMail Client Services</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[cheetahmail]]></category>
		<category><![CDATA[creative]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[email]]></category>

		<guid isPermaLink="false">http://www.experian.com/blogs/marketing-forward/?p=4770</guid>
		<description><![CDATA[From a designer’s point of view, emails could be described in their broadest sense as a series of rectangles with content inside of them. Just think of your email template’s wireframe — it’s a series of black and white-filled rectangles, right? When you think of it, nearly everything designed for viewing on a screen follows [...]]]></description>
			<content:encoded><![CDATA[<p>From a designer’s point of view, emails could be described in their broadest sense as a series of rectangles with content inside of them. Just think of your email template’s wireframe — it’s a series of black and white-filled rectangles, right? When you think of it, nearly everything designed for viewing on a screen follows the laws of the rectangles and color fills, but that’s not necessarily the way it has to be.</p>
<p><strong>A recent design trend that I’ve been intrigued by is the use of textures, uneven edges and off-kilter layers to create a more organic feel to email campaigns.</strong></p>
<p>American Eagle has really been at the cutting edge of this trend. Their campaigns use all three of these techniques, plus handwritten fonts and drop shadows (rather than frames), to make their imagery stand out in the inbox. The innovative use of curled photographs and plaster background textures add even more intrigue to the design. I love the way the background texture blends into the white naturally.</p>
<p><img class="wp-image-4771 alignnone" title="Email Gets Rough Around The Edges" src="http://www.experian.com/blogs/marketing-forward/wp-content/uploads/2012/08/email-that-get-rough-around-the-edges.jpg" alt="Email Gets Rough Around The Edges" width="387" height="392" /></p>
<p>Going one step further, American Eagle’s sister brands are getting in on the fun as well. 77kids utilize a linen-style background rather than a plaster one, along with heavily distressed photo borders and paper clips. It’s a unified look for the master brand and the individual brand, and manages to look home-made yet modern.</p>
<p><img class="alignnone  wp-image-4772" title="Email gets rough around the edges 2" src="http://www.experian.com/blogs/marketing-forward/wp-content/uploads/2012/08/email-that-get-rough-around-the-edges2.jpg" alt="Email gets rough around the edges 2" width="503" height="568" /></p>
<p>Taking a step back and looking at these designs through the lens of history, they remind me quite a bit of popular print advertising from the 1990′s, known commonly as “grunge” style. Grunge was not just associated with music and fashion in the 90′s, but was also<a title="David Carson (graphic designer)" href="http://en.wikipedia.org/wiki/David_Carson_(graphic_designer)" target="_blank" class="broken_link"> made popular by designers such as David Carson</a>. Even companies as straight-laced as <a href="http://www.experian.com/blogs/marketing-forward/wp-content/uploads/2012/08/Nike-Grunge.jpg" target="_blank">Nike</a> and<a href="http://www.experian.com/blogs/marketing-forward/wp-content/uploads/2012/08/OK_Soda_Grunge.jpg" target="_blank"> Coca-Cola</a> experimented with grunge visuals during the 1990′s.</p>
<p>If the fading <a href="http://www.experian.com/blogs/marketing-forward/wp-content/uploads/2012/08/CalvinHarris.jpg" target="_blank">retro-electro design trend</a> of the past 10 years reminded us of the 1980′s, it makes sense that we should expect to see a renaissance of 1990′s style in email and elsewhere in the next decade.</p>
<div style="height:33px;" class="really_simple_share robots-nocontent snap_nopreview"></div>
		<div style="clear:both;"></div>]]></content:encoded>
			<wfw:commentRss>http://www.experian.com/blogs/marketing-forward/2010/06/25/email-that-get-rough-around-the-edges/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>