<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>The Lunch Pail</title>
	<atom:link href="http://lunchpail.knotice.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://lunchpail.knotice.com</link>
	<description></description>
	<lastBuildDate>Thu, 17 May 2012 13:40:35 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='lunchpail.knotice.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://1.gravatar.com/blavatar/5469d5a62e350194332089bb1a94423b?s=96&#038;d=http%3A%2F%2Fs2.wp.com%2Fi%2Fbuttonw-com.png</url>
		<title>The Lunch Pail</title>
		<link>http://lunchpail.knotice.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://lunchpail.knotice.com/osd.xml" title="The Lunch Pail" />
	<atom:link rel='hub' href='http://lunchpail.knotice.com/?pushpress=hub'/>
		<item>
		<title>Steps to Faster Page Load Times</title>
		<link>http://lunchpail.knotice.com/2012/05/16/steps-to-faster-page-load-times/</link>
		<comments>http://lunchpail.knotice.com/2012/05/16/steps-to-faster-page-load-times/#comments</comments>
		<pubDate>Wed, 16 May 2012 05:01:40 +0000</pubDate>
		<dc:creator>Christopher Holmok</dc:creator>
				<category><![CDATA[Best Practices Insight]]></category>
		<category><![CDATA[Design Tips]]></category>
		<category><![CDATA[Knotice]]></category>
		<category><![CDATA[Optimization]]></category>
		<category><![CDATA[Tech Tips]]></category>
		<category><![CDATA[Testing]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[faster page loads]]></category>
		<category><![CDATA[improving page load times]]></category>
		<category><![CDATA[load times]]></category>
		<category><![CDATA[page loads]]></category>

		<guid isPermaLink="false">http://lunchpail.knotice.com/?p=7374</guid>
		<description><![CDATA[Part 2 in a series &#8211; In my last post, we discussed why page load times are so important. In this post we discuss how to improve them and make them faster. To make the process simple, let’s break it into three steps: Audit, Address, and Repeat. Step One: Audit - Browsers like Firefox and [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=lunchpail.knotice.com&#038;blog=3455516&#038;post=7374&#038;subd=knoticelunchpail&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<div id="topGraph"><img src="http://www.knotice.com/thelunchpail/images/chrisHolmok.jpg" alt="Chris Holmok" width="120" height="132" /><em>Part 2 in a series &#8211; </em>In <a href="http://lunchpail.knotice.com/2012/05/09/the-importance-of-improving-load-times/">my last post</a>, we discussed why page load times are so important. In this post we discuss how to improve them and make them faster. To make the process simple, let’s break it into three steps: Audit, Address, and Repeat.</div>
<div id="topGraph"><strong>Step One: Audit -</strong> Browsers like Firefox and Chrome offer a ton of plugins to test the speed of your website. We are going to focus on two plugins available for Firefox, specifically <a href="//addons.mozilla.org/en-US/firefox/addon/firebug/”"> Firebug</a> and <a href="//addons.mozilla.org/en-US/firefox/addon/yslow/”">YSlow</a>. Firebug is a tool designed for web developers and one of its coolest features is the Net tab. When you enable Firebug switch to the Net tab and reload the page, you should see something like this:</div>
<p><a href="http://knoticelunchpail.files.wordpress.com/2012/05/holmokpost2.jpg"><img class="aligncenter size-medium wp-image-7377" title="holmokPost" src="http://knoticelunchpail.files.wordpress.com/2012/05/holmokpost.jpg?w=450&h=145" alt="Firebug Net tab screen" width="450" height="145" /></a></p>
<p>This will tell you how many files were loaded, how long each one took, and the order in which they load. This will help you pinpoint the sources that are slowing your page load times.</p>
<p>YSlow is a tester built into Firebug. It will analyze your page and give it a grade based on industry standard practices. The first time you run this, you will get a bad grade, and all things may seem a bit overwhelming. Here are some areas to concentrate on:</p>
<ul>
<ul>
<li><em>Make fewer HTTP requests:</em> Try consolidating JavaScript and CSS files. The fewer requests, the faster the load time.</li>
<li><em>Compress components with gzip:</em> Most web servers can compress responses. This makes for smaller files, and smaller files load faster.</li>
<li><em>Put JavaScript at bottom:</em> If JavaScript is at the top of the page and takes a while to load, it halts everything below it until it finishes. Move it lower.</li>
<li><em>Use a Content Delivery Network (CDN):</em> If you web server is serving up dynamic web pages, it does a lot of work to do that (reading and setting cookies, etc.). Most web servers are set up to only allow two connections per client. So if you are serving static content (like images, CSS files, etc.) from the same place, this adds work and creates a bottleneck. By using a CDN, you can offload those requests, reducing the strain on you web servers. The static files will then load faster and your dynamic content loads faster, too. For more info on CDN, look here: <a href="http://en.wikipedia.org/wiki/Content_delivery_network"> http://en.wikipedia.org/wiki/Content_delivery_network</a>.</li>
</ul>
</ul>
<p><strong>Step Two: Address &#8211; </strong> After finding the issues in your audit, this is where you actually pick which things to fix and then fix them. Some may be as simple as having IT enable features on your web server, but others can be more involved, such as publishing to a CDN. So choose your battles, and once your done…</p>
<p><strong>Step 3: Repeat -</strong> Web load time optimization is not a &#8220;set it and forget it&#8221; thing. As your website changes and technologies change, there is always room for improvement. The best thing you can do is stay on top of it.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/knoticelunchpail.wordpress.com/7374/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/knoticelunchpail.wordpress.com/7374/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/knoticelunchpail.wordpress.com/7374/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/knoticelunchpail.wordpress.com/7374/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/knoticelunchpail.wordpress.com/7374/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/knoticelunchpail.wordpress.com/7374/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/knoticelunchpail.wordpress.com/7374/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/knoticelunchpail.wordpress.com/7374/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/knoticelunchpail.wordpress.com/7374/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/knoticelunchpail.wordpress.com/7374/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/knoticelunchpail.wordpress.com/7374/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/knoticelunchpail.wordpress.com/7374/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/knoticelunchpail.wordpress.com/7374/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/knoticelunchpail.wordpress.com/7374/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=lunchpail.knotice.com&#038;blog=3455516&#038;post=7374&#038;subd=knoticelunchpail&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://lunchpail.knotice.com/2012/05/16/steps-to-faster-page-load-times/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/03c2bee6b72420ea4fb96e235e98cd49?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Chris</media:title>
		</media:content>

		<media:content url="http://www.knotice.com/thelunchpail/images/chrisHolmok.jpg" medium="image">
			<media:title type="html">Chris Holmok</media:title>
		</media:content>

		<media:content url="http://knoticelunchpail.files.wordpress.com/2012/05/holmokpost.jpg?w=450" medium="image">
			<media:title type="html">holmokPost</media:title>
		</media:content>
	</item>
		<item>
		<title>Recent Mobile News and Statistics</title>
		<link>http://lunchpail.knotice.com/2012/05/14/recent-mobile-news-and-statistics/</link>
		<comments>http://lunchpail.knotice.com/2012/05/14/recent-mobile-news-and-statistics/#comments</comments>
		<pubDate>Mon, 14 May 2012 15:28:44 +0000</pubDate>
		<dc:creator>Casey Barto Newman</dc:creator>
				<category><![CDATA[email marketing]]></category>
		<category><![CDATA[Industry News]]></category>
		<category><![CDATA[marketing]]></category>
		<category><![CDATA[Mobile Marketing]]></category>
		<category><![CDATA[Trend Spotting]]></category>

		<guid isPermaLink="false">http://lunchpail.knotice.com/?p=7352</guid>
		<description><![CDATA[A lot has happened in the mobile space since we released our latest Mobile Email Opens report for H2 2011 (check out the that report and previous ones here.) There’s been interesting data on mobile commerce, more data on mobile email, data on location-based services and more. Let’s start by taking a look at the [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=lunchpail.knotice.com&#038;blog=3455516&#038;post=7352&#038;subd=knoticelunchpail&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<div id="topGraph"><img src="http://www.knotice.com/thelunchpail/images/caseyBarto.jpg" alt="Casey Barto" width="120" height="132" />A lot has happened in the mobile space since we released our latest Mobile Email Opens report for H2 2011 (check out the that report and previous ones <a href="http://lunchpail.knotice.com/mobile-email-opens-reports-by-knotice/">here</a>.)  There’s been interesting data on mobile commerce, more data on mobile email, data on location-based services and more.</div>
<div id="topGraph">Let’s start by taking a look at the “smartphone class” or those consumers who are always on and always connected. eMarketer reports that as many as <a href="http://www.emarketer.com/Article.aspx?R=1009014">100 million people</a> (and growing) are armed with smartphones, always consuming content.</div>
<p>According to eMarketer: “Members of the ‘smartphone class’ stand apart from other Americans in the way they shop, communicate, consume media—even how they use their spare time. Its members define themselves by their connectedness and their sense of empowerment through unfettered access to real-time information.” The research firm estimates that nearly 3 in 5 consumers will have a smartphone by 2016. Additionally, eMarketer mentions that the “smartphone class” takes part in something we all probably do when we’re bored: turn to our mobile devices. </p>
<p>“Depending on their mood in the moment, gratification might mean completing a quick task or finding a fun distraction. For marketers, this rising content consumption means an increasing number of touchpoints where they can reach consumers,” according to the report.</p>
<p>One of those touchpoints could be in an mcommerce setting. IBM reports that purchases made from a mobile device account for <a>13% of online purchases</a>, up from just 7% the previous year.</p>
<p>According to a recent article, “IBM adds that 17.1 percent of all sessions on retailer sites are now initiated on mobile devices, increasing from 6.1 percent in the first quarter of 2011.”</p>
<p><i>Internet Retailer</i> reports that <a href="http://www.internetretailer.com/2012/04/25/location-based-services-are-coming-age">12.5% of mobile users</a> are will to share their location with retailers in order to receive special offers and coupons. Additionally, 33% of mobile users would like to receive coupons or special offers via SMS or through an app, and 21% of smartphone users said they would be interested in mobile advertising if it was offering a deal for a location near them.</p>
<p>And finally, Return Path reports that <a href="http://returnpath.net/landing/mobilestudyQ212/">88% of people</a> check their email from a mobile device daily. Return Path also estimates that more people will be reading email on mobile rather than a desktop device by the end of 2012.</p>
<p>What other interesting mobile or digital marketing news have you come across recently?  </p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/knoticelunchpail.wordpress.com/7352/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/knoticelunchpail.wordpress.com/7352/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/knoticelunchpail.wordpress.com/7352/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/knoticelunchpail.wordpress.com/7352/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/knoticelunchpail.wordpress.com/7352/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/knoticelunchpail.wordpress.com/7352/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/knoticelunchpail.wordpress.com/7352/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/knoticelunchpail.wordpress.com/7352/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/knoticelunchpail.wordpress.com/7352/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/knoticelunchpail.wordpress.com/7352/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/knoticelunchpail.wordpress.com/7352/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/knoticelunchpail.wordpress.com/7352/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/knoticelunchpail.wordpress.com/7352/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/knoticelunchpail.wordpress.com/7352/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=lunchpail.knotice.com&#038;blog=3455516&#038;post=7352&#038;subd=knoticelunchpail&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://lunchpail.knotice.com/2012/05/14/recent-mobile-news-and-statistics/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/52da5e39919cf0744ec4eca69fa7c4b2?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">knoticecbarto</media:title>
		</media:content>

		<media:content url="http://www.knotice.com/thelunchpail/images/caseyBarto.jpg" medium="image">
			<media:title type="html">Casey Barto</media:title>
		</media:content>
	</item>
		<item>
		<title>It’s a Jungle In Here</title>
		<link>http://lunchpail.knotice.com/2012/05/11/its-a-jungle-in-here/</link>
		<comments>http://lunchpail.knotice.com/2012/05/11/its-a-jungle-in-here/#comments</comments>
		<pubDate>Fri, 11 May 2012 16:06:29 +0000</pubDate>
		<dc:creator>Casey Barto Newman</dc:creator>
				<category><![CDATA[Knotice]]></category>
		<category><![CDATA[life at knotice]]></category>

		<guid isPermaLink="false">http://lunchpail.knotice.com/?p=7341</guid>
		<description><![CDATA[Ever wonder what it’s like inside Knotice? Sure we have the standard office fare, like cubicles and whiteboards, but we have plenty of unique office happenings that make Knotice an awesome place to work. From our Cinco de Mayo festivities, to our Fantasy Football competition, to our Halloween party and our soccer league, we know [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=lunchpail.knotice.com&#038;blog=3455516&#038;post=7341&#038;subd=knoticelunchpail&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<div id="topGraph"><img src="http://www.knotice.com/thelunchpail/images/caseyBarto.jpg" alt="Casey Barto" width="120" height="132" />Ever wonder what it’s like inside Knotice? Sure we have the standard office fare, like cubicles and whiteboards, but we have plenty of unique office happenings that make Knotice an awesome place to work. From our <a href="http://lunchpail.knotice.com/2012/05/04/happy-almost-cinco-de-mayo/">Cinco de Mayo festivities</a>, to our <a href="http://lunchpail.knotice.com/2012/02/03/knotice-crowns-its-first-fantasy-football-champion/">Fantasy Football competition</a>, to our <a href="http://lunchpail.knotice.com/2011/10/31/happy-halloween-from-knotice/"> Halloween party</a> and <a href="http://lunchpail.knotice.com/2011/06/08/playing-at-knotice/">our soccer league</a>, we know how to have fun (and work hard too.)</div>
<p>Over the coming weeks we’ll be introducing you to different departments within Knotice. We’ve got our <a href="http://www.knotice.com/crosschannel/email.html#agencyServices">Professional Services Team</a>, developers, Creative Services department, and more.</p>
<p>Today, we’re going to take a look at some of the ‘members’ of the Creative Services department. These team members are soft, fluffy and enjoy taking naps. Meet the stuffed animals of the Creative Services Department:</p>
<div id="attachment_7342" class="wp-caption aligncenter" style="width: 310px"><a href="http://knoticelunchpail.files.wordpress.com/2012/05/animalpresident.jpg"><img class="size-medium wp-image-7342" title="animalpresident" src="http://knoticelunchpail.files.wordpress.com/2012/05/animalpresident.jpg?w=300&h=184" alt="" width="300" height="184" /></a><p class="wp-caption-text">State of the Stuffed Animal Union: Mr. Speaker &#8230; The President of the Stuffed Animal Congress, Llama! We set this up at work. Llama is the president, Duck is the loud-mouth vice president since he can actually quack and the angry birds are the conservatives who don&#8217;t agree with anything President Llama says.</p></div>
<div id="attachment_7343" class="wp-caption aligncenter" style="width: 310px"><a href="http://knoticelunchpail.files.wordpress.com/2012/05/animalsbox.jpg"><img class="size-medium wp-image-7343" title="animalsbox" src="http://knoticelunchpail.files.wordpress.com/2012/05/animalsbox.jpg?w=300&h=253" alt="" width="300" height="253" /></a><p class="wp-caption-text">It&#8217;s a dangerous time to be a stuffed animal at work &#8230;</p></div>
<div id="attachment_7348" class="wp-caption aligncenter" style="width: 310px"><a href="http://knoticelunchpail.files.wordpress.com/2012/05/animalsrubiks.jpg"><img class="size-medium wp-image-7348" title="animalsrubiks" src="http://knoticelunchpail.files.wordpress.com/2012/05/animalsrubiks.jpg?w=300&h=222" alt="" width="300" height="222" /></a><p class="wp-caption-text">Mike brought in a Rubik&#8217;s cube at work to help when he suffers from designer&#8217;s block. It seems his elephant has figured out a side on his own &#8230; with no help from the idiots in the peanut gallery putting in their two cents. He&#8217;s a smart little guy.</p></div>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/knoticelunchpail.wordpress.com/7341/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/knoticelunchpail.wordpress.com/7341/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/knoticelunchpail.wordpress.com/7341/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/knoticelunchpail.wordpress.com/7341/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/knoticelunchpail.wordpress.com/7341/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/knoticelunchpail.wordpress.com/7341/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/knoticelunchpail.wordpress.com/7341/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/knoticelunchpail.wordpress.com/7341/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/knoticelunchpail.wordpress.com/7341/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/knoticelunchpail.wordpress.com/7341/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/knoticelunchpail.wordpress.com/7341/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/knoticelunchpail.wordpress.com/7341/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/knoticelunchpail.wordpress.com/7341/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/knoticelunchpail.wordpress.com/7341/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=lunchpail.knotice.com&#038;blog=3455516&#038;post=7341&#038;subd=knoticelunchpail&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://lunchpail.knotice.com/2012/05/11/its-a-jungle-in-here/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/52da5e39919cf0744ec4eca69fa7c4b2?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">knoticecbarto</media:title>
		</media:content>

		<media:content url="http://www.knotice.com/thelunchpail/images/caseyBarto.jpg" medium="image">
			<media:title type="html">Casey Barto</media:title>
		</media:content>

		<media:content url="http://knoticelunchpail.files.wordpress.com/2012/05/animalpresident.jpg?w=300" medium="image">
			<media:title type="html">animalpresident</media:title>
		</media:content>

		<media:content url="http://knoticelunchpail.files.wordpress.com/2012/05/animalsbox.jpg?w=300" medium="image">
			<media:title type="html">animalsbox</media:title>
		</media:content>

		<media:content url="http://knoticelunchpail.files.wordpress.com/2012/05/animalsrubiks.jpg?w=300" medium="image">
			<media:title type="html">animalsrubiks</media:title>
		</media:content>
	</item>
		<item>
		<title>The Importance of Improving Load Times</title>
		<link>http://lunchpail.knotice.com/2012/05/09/the-importance-of-improving-load-times/</link>
		<comments>http://lunchpail.knotice.com/2012/05/09/the-importance-of-improving-load-times/#comments</comments>
		<pubDate>Wed, 09 May 2012 16:05:51 +0000</pubDate>
		<dc:creator>Christopher Holmok</dc:creator>
				<category><![CDATA[Best Practices Insight]]></category>
		<category><![CDATA[Mobile Marketing]]></category>
		<category><![CDATA[online consumer experience]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://lunchpail.knotice.com/?p=7361</guid>
		<description><![CDATA[Part 1 of series -  So you are thirsty. You head to the corner convenience store for a soda. You pull on the door and it does not open. You walk away and look for another store to get your soda. What you didn’t know was that if you pulled on the door for 5 [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=lunchpail.knotice.com&#038;blog=3455516&#038;post=7361&#038;subd=knoticelunchpail&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<div id="topGraph"><img src="http://www.knotice.com/thelunchpail/images/chrisHolmok.jpg" alt="Chris Holmok" width="120" height="132" /><em>Part 1 of series - </em> So you are thirsty. You head to the corner convenience store for a soda. You pull on the door and it does not open. You walk away and look for another store to get your soda. What you didn’t know was that if you pulled on the door for 5 seconds it would have opened. This is an extreme analogy, but it rings true for websites, too.</div>
<p>An error page or a slow-loading page can feel like a locked door at the store. It can also feel like a long check-out line. With the web now being a sometimes a first, if not the only, exposure to your business, you want that impression to be easy and meet the average users&#8217; expectations.</p>
<p>Nearly half of web users expect web pages to load in 2 seconds. Adding a second, making for 3-second page load can lead to 40% of users abandoning your site. Studies have also shown that an increase of one second in page load times can result in a 7% decrease in conversions.</p>
<p>Not too long ago the golden rule was 7 seconds. But that was in the time of dial-up internet and not-so-smart phones. Today, with cable modems and fiber optics in the home and 4G LTE on smart phones, people don’t want to wait. The 7 second rule is not even valid in the mobile world. Most people are more patient with their phones, but the abandonment rate still goes up the longer they wait.</p>
<p>Whether load times are affected by server load, poor coding, heavy pages, or anything else, the consumer does not care. Their loyalty and their attention stems from the snappy performance they expect of you website. In part two of this article, we will hit some high points on making your website perform at its best.</p>
<p>For more information on how load times can affect your user experience check out this <a href="http://blog.kissmetrics.com/loading-time/">info-graphic here</a>.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/knoticelunchpail.wordpress.com/7361/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/knoticelunchpail.wordpress.com/7361/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/knoticelunchpail.wordpress.com/7361/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/knoticelunchpail.wordpress.com/7361/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/knoticelunchpail.wordpress.com/7361/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/knoticelunchpail.wordpress.com/7361/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/knoticelunchpail.wordpress.com/7361/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/knoticelunchpail.wordpress.com/7361/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/knoticelunchpail.wordpress.com/7361/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/knoticelunchpail.wordpress.com/7361/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/knoticelunchpail.wordpress.com/7361/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/knoticelunchpail.wordpress.com/7361/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/knoticelunchpail.wordpress.com/7361/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/knoticelunchpail.wordpress.com/7361/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=lunchpail.knotice.com&#038;blog=3455516&#038;post=7361&#038;subd=knoticelunchpail&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://lunchpail.knotice.com/2012/05/09/the-importance-of-improving-load-times/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/03c2bee6b72420ea4fb96e235e98cd49?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Chris</media:title>
		</media:content>

		<media:content url="http://www.knotice.com/thelunchpail/images/chrisHolmok.jpg" medium="image">
			<media:title type="html">Chris Holmok</media:title>
		</media:content>
	</item>
		<item>
		<title>Case Study Details Customer-Focused Success</title>
		<link>http://lunchpail.knotice.com/2012/05/07/case-study-details-customer-focused-success/</link>
		<comments>http://lunchpail.knotice.com/2012/05/07/case-study-details-customer-focused-success/#comments</comments>
		<pubDate>Mon, 07 May 2012 16:10:15 +0000</pubDate>
		<dc:creator>Knotice</dc:creator>
				<category><![CDATA[marketing]]></category>
		<category><![CDATA[Knotice]]></category>
		<category><![CDATA[Knotice case study]]></category>
		<category><![CDATA[knotice customer success]]></category>
		<category><![CDATA[oreck]]></category>
		<category><![CDATA[oreck case study]]></category>
		<category><![CDATA[Universal Profile Management]]></category>
		<category><![CDATA[what is universal profile management]]></category>

		<guid isPermaLink="false">http://lunchpail.knotice.com/?p=7324</guid>
		<description><![CDATA[The super-connected consumer lots of options when it’s time to engage with a brand. The key for marketers is to manage the exposures to increase the likelihood they’ll buy, to further enhance the relationship. Does your brand have a prominent place in the super-connected consumer’s mind across multiple touchpoints? Are you driving each digital impression [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=lunchpail.knotice.com&#038;blog=3455516&#038;post=7324&#038;subd=knoticelunchpail&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>The super-connected consumer lots of options when it’s time to engage with a brand. The key for marketers is to manage the exposures to increase the likelihood they’ll buy, to further enhance the relationship. Does your brand have a prominent place in the super-connected consumer’s mind across multiple touchpoints? Are you driving each digital impression toward the outcome you want? If the answer is no, or if you’re not sure, take a look at Forrester Research Inc.’s recent report, <a href="http://www.knotice.com/whitepapers/forrester-oreck-case-study/">“Case Study: Oreck Improves Media Spend ROI By Taking A Unified View Of The Customer.”</a></p>
<p>Forrester previously has stated that a lack of messaging focus across channels can weaken a brand’s prominence in the mind of the consumer. Such weakness leads to less-than-ideal customer experiences. So even if your brand messages are sprinkled across disparate channels without consideration for relevance and needs of the customer, it’s never too late to connect the digital dots and get your approach on track.</p>
<p>As you’ll see in this independent (non-commissioned) case study, vacuum and cleaning product manufacturer Oreck generated 10 times more revenue on Oreck.com, decreased abandoned shopping carts and increased conversions by connecting the various digital touch points with a unified approach. A key component to their success was the use of Knotice’s <a href="http://www.knotice.com/upm/upm-index.html">Universal Profile Management System</a>, which allowed Oreck to create a robust warehouse of customer profile data for use to inform more relevant messaging.</p>
<p>While it may seem daunting for marketers to abandon the old separate-channel siloed approach in favor of a more complete view of the customer, making the switch can yield impressive results, as Oreck has demonstrated.</p>
<p>Check out this brief interview with Tarik Dekkar, Head of Digital and CRM at Oreck, for an inside look at how they used Knotice’s on-demand platform, Concentri, to achieve success using customer data for advanced segmentation.<br />
<br />
<span style="text-align:center; display: block;"><a href="http://lunchpail.knotice.com/2012/05/07/case-study-details-customer-focused-success/"><img src="http://img.youtube.com/vi/E9DfJ2GKWkc/2.jpg" alt="" /></a></span></p>
<p>Again, to access the complete report, “Case Study: Oreck Improves Media Spend ROI By Taking A Unified View Of The Customer,” <a href="http://www.knotice.com/whitepapers/forrester-Oreck-Case-Study/index.html">follow this link</a>. And, if you’re interested in learning more about how you can achieve the kind of success Oreck has seen, just shoot us an email at <a href="mailto:info@knotice.com">info@knotice.com</a>. </p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/knoticelunchpail.wordpress.com/7324/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/knoticelunchpail.wordpress.com/7324/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/knoticelunchpail.wordpress.com/7324/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/knoticelunchpail.wordpress.com/7324/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/knoticelunchpail.wordpress.com/7324/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/knoticelunchpail.wordpress.com/7324/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/knoticelunchpail.wordpress.com/7324/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/knoticelunchpail.wordpress.com/7324/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/knoticelunchpail.wordpress.com/7324/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/knoticelunchpail.wordpress.com/7324/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/knoticelunchpail.wordpress.com/7324/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/knoticelunchpail.wordpress.com/7324/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/knoticelunchpail.wordpress.com/7324/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/knoticelunchpail.wordpress.com/7324/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=lunchpail.knotice.com&#038;blog=3455516&#038;post=7324&#038;subd=knoticelunchpail&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://lunchpail.knotice.com/2012/05/07/case-study-details-customer-focused-success/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/975c91e9410cb3b0acc6906f1afbbd48?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">knoticegroup</media:title>
		</media:content>
	</item>
		<item>
		<title>Happy (almost) Cinco de Mayo!</title>
		<link>http://lunchpail.knotice.com/2012/05/04/happy-almost-cinco-de-mayo/</link>
		<comments>http://lunchpail.knotice.com/2012/05/04/happy-almost-cinco-de-mayo/#comments</comments>
		<pubDate>Fri, 04 May 2012 17:55:09 +0000</pubDate>
		<dc:creator>Knotice</dc:creator>
				<category><![CDATA[Knotice]]></category>
		<category><![CDATA[cinco de mayo]]></category>
		<category><![CDATA[life at knotice]]></category>

		<guid isPermaLink="false">http://lunchpail.knotice.com/?p=7274</guid>
		<description><![CDATA[To celebrate, we threw a fiesta for the team here at Knotice, complete with all the Mexican favorites. But rather than show you a bunch of photos of food, we asked people here for images of how they celebrate Cinco de Mayo at work. Check out some of the creative submissions below:<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=lunchpail.knotice.com&#038;blog=3455516&#038;post=7274&#038;subd=knoticelunchpail&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>To celebrate, we threw a fiesta for the team here at Knotice, complete with all the Mexican favorites. But rather than show you a bunch of photos of food, we asked people here for images of how they celebrate Cinco de Mayo at work.</p>
<p>Check out some of the creative submissions below:</p>
<p><div id="attachment_7277" class="wp-caption aligncenter" style="width: 310px"><a href="http://knoticelunchpail.files.wordpress.com/2012/05/mattandsarah1.jpg"><img src="http://knoticelunchpail.files.wordpress.com/2012/05/mattandsarah1.jpg?w=300&h=238" alt="" title="kimandmatt" width="300" height="238" class="size-medium wp-image-7277" /></a><p class="wp-caption-text">Here&#8217;s Kim and Matt from Professional Services with their literal interpretation of Cinco de Mayo.</p></div> <div id="attachment_7280" class="wp-caption alignright" style="width: 310px"><a href="http://knoticelunchpail.files.wordpress.com/2012/05/sarahandmicah.jpg"><img src="http://knoticelunchpail.files.wordpress.com/2012/05/sarahandmicah.jpg?w=300&h=296" alt="" title="sarahandmicah" width="300" height="296" class="size-medium wp-image-7280" /></a><p class="wp-caption-text">Sarah and Micah showing some enthusiasm about today&#8217;s festivities.</p></div><div id="attachment_7284" class="wp-caption alignright" style="width: 160px"><a href="http://knoticelunchpail.files.wordpress.com/2012/05/food.jpg"><img src="http://knoticelunchpail.files.wordpress.com/2012/05/food.jpg?w=150&h=190" alt="" title="food" width="150" height="190" class="size-thumbnail wp-image-7284" /></a><p class="wp-caption-text">Ok, so here&#8217;s one picture of the food.</p></div></p>
<div id="attachment_7293" class="wp-caption aligncenter" style="width: 410px"><a href="http://knoticelunchpail.files.wordpress.com/2012/05/shorts.jpg"><img src="http://knoticelunchpail.files.wordpress.com/2012/05/shorts.jpg?w=400&h=400" alt="" title="shorts" width="400" height="400" class="size-medium wp-image-7293" /></a><p class="wp-caption-text">The weather has certainly warmed up now that it&#8217;s May, and though it&#8217;s not Cinco de Mayo themed, here&#8217;s a shot of some of our developers sporting their new uniform: plaid shorts.</p></div>
<p><div id="attachment_7298" class="wp-caption alignleft" style="width: 230px"><a href="http://knoticelunchpail.files.wordpress.com/2012/05/animals1.jpg"><img src="http://knoticelunchpail.files.wordpress.com/2012/05/animals1.jpg?w=220&h=184" alt="" title="animals1" width="220" height="184" class="size-medium wp-image-7298" /></a><p class="wp-caption-text">The Creative Department&#8217;s stuffed animals (more on that in a post next week) were looking forward to their Cinco de Mayo buffet feast&#8230;</p></div><div id="attachment_7299" class="wp-caption alignright" style="width: 260px"><a href="http://knoticelunchpail.files.wordpress.com/2012/05/animals2.jpg"><img src="http://knoticelunchpail.files.wordpress.com/2012/05/animals2.jpg?w=250&h=224" alt="" title="animals2" width="250" height="224" class="size-medium wp-image-7299" /></a><p class="wp-caption-text">But <i>someone</i> had to go and ruin it all &#8230;.<br />
Good thing most of them are herbivores. The moral of the story: Never let the pig have at the buffet first.</p></div></p>
<div id="attachment_7313" class="wp-caption aligncenter" style="width: 310px"><a href="http://knoticelunchpail.files.wordpress.com/2012/05/animals4.jpg"><img src="http://knoticelunchpail.files.wordpress.com/2012/05/animals4.jpg?w=300&h=253" alt="" title="animals4" width="300" height="253" class="size-medium wp-image-7313" /></a><p class="wp-caption-text"><br />Jeff bridges (what a doll!) is back in the saddle again, this time for the soon-to-be cult classic &#8220;Tequilla Mockingbird.&#8221;</p></div>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/knoticelunchpail.wordpress.com/7274/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/knoticelunchpail.wordpress.com/7274/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/knoticelunchpail.wordpress.com/7274/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/knoticelunchpail.wordpress.com/7274/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/knoticelunchpail.wordpress.com/7274/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/knoticelunchpail.wordpress.com/7274/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/knoticelunchpail.wordpress.com/7274/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/knoticelunchpail.wordpress.com/7274/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/knoticelunchpail.wordpress.com/7274/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/knoticelunchpail.wordpress.com/7274/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/knoticelunchpail.wordpress.com/7274/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/knoticelunchpail.wordpress.com/7274/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/knoticelunchpail.wordpress.com/7274/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/knoticelunchpail.wordpress.com/7274/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=lunchpail.knotice.com&#038;blog=3455516&#038;post=7274&#038;subd=knoticelunchpail&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://lunchpail.knotice.com/2012/05/04/happy-almost-cinco-de-mayo/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/975c91e9410cb3b0acc6906f1afbbd48?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">knoticegroup</media:title>
		</media:content>

		<media:content url="http://knoticelunchpail.files.wordpress.com/2012/05/mattandsarah1.jpg?w=300" medium="image">
			<media:title type="html">kimandmatt</media:title>
		</media:content>

		<media:content url="http://knoticelunchpail.files.wordpress.com/2012/05/sarahandmicah.jpg?w=300" medium="image">
			<media:title type="html">sarahandmicah</media:title>
		</media:content>

		<media:content url="http://knoticelunchpail.files.wordpress.com/2012/05/food.jpg?w=150" medium="image">
			<media:title type="html">food</media:title>
		</media:content>

		<media:content url="http://knoticelunchpail.files.wordpress.com/2012/05/shorts.jpg?w=300" medium="image">
			<media:title type="html">shorts</media:title>
		</media:content>

		<media:content url="http://knoticelunchpail.files.wordpress.com/2012/05/animals1.jpg?w=300" medium="image">
			<media:title type="html">animals1</media:title>
		</media:content>

		<media:content url="http://knoticelunchpail.files.wordpress.com/2012/05/animals2.jpg?w=300" medium="image">
			<media:title type="html">animals2</media:title>
		</media:content>

		<media:content url="http://knoticelunchpail.files.wordpress.com/2012/05/animals4.jpg?w=300" medium="image">
			<media:title type="html">animals4</media:title>
		</media:content>
	</item>
		<item>
		<title>Phone Phobia: Are You a Smartphone Addict?</title>
		<link>http://lunchpail.knotice.com/2012/05/02/phone-phobia-are-you-a-smartphone-addict/</link>
		<comments>http://lunchpail.knotice.com/2012/05/02/phone-phobia-are-you-a-smartphone-addict/#comments</comments>
		<pubDate>Wed, 02 May 2012 16:15:31 +0000</pubDate>
		<dc:creator>Micah Hatton</dc:creator>
				<category><![CDATA[Industry News]]></category>
		<category><![CDATA[are you addicted to your smartphone?]]></category>
		<category><![CDATA[mobile]]></category>
		<category><![CDATA[mobile users]]></category>
		<category><![CDATA[phone phobia]]></category>
		<category><![CDATA[smartphone addiction]]></category>
		<category><![CDATA[smartphone addiction test]]></category>

		<guid isPermaLink="false">http://lunchpail.knotice.com/?p=7262</guid>
		<description><![CDATA[I used to think that Mobile Phone Addiction was bunk… Until I got one. Each time I leave the house, I check my pockets. Car keys? Check. Wallet? Check. Chap Stick? Check. Phone? Double check. After all, what happens if I get a flat tire? Studies show that once an emergency-only device, the mobile phone [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=lunchpail.knotice.com&#038;blog=3455516&#038;post=7262&#038;subd=knoticelunchpail&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<div id="topGraph"><img src="http://www.knotice.com/thelunchpail/images/micahHatton.jpg" alt="Micah Hatton" width="120" height="132" />I used to think that Mobile Phone Addiction was bunk…</div>
<div id="topGraph">Until I got one.</div>
<div id="topGraph">Each time I leave the house, I check my pockets. Car keys? Check. Wallet? Check. Chap Stick? Check. Phone? <em>Double</em> check. After all, what happens if I get a flat tire?</div>
<div id="topGraph">Studies show that once an emergency-only device, the mobile phone has become a security blanket for most people. And why shouldn’t it be? The whole world is at your fingertips. Email, music, calculator, apps galore – you name it, you can access it. I won’t even get into how smart I can sound having Google so readily available.</div>
<p>But enough about me. How do you react when you’re away from your phone? Do you get anxious, feel cut off from the world or out of the loop?</p>
<p>Almost everyone (younger generations, in particular) can develop a sense of attachment to their mobile device. In a world where so many people are constantly connecting via texting, Facebook, Twitter (this blog) – being without such instant access to the world can leave a person stranded in the abyss that is life without a phone.</p>
<p>What is it about that little buzz or ringtone that eats away at us when we know there’s a message, email or tweet to read? According to <a href="http://www.geekosystem.com/cell-phone-attachment/">Geekosystem</a>, “22 percent of people (surveyed) said they would be willing to go a week without seeing their significant other rather than go without their phone.”</p>
<p>The challenge here is balancing connectedness with contact. How do we interact with both our outside world and our immediate surroundings? There may be no easy solution, but the next time your phone goes off, ask yourself: Is it really the end of the world if those tweets don’t get read? If you don’t check that email in the middle of the night?</p>
<p>The answer is different for all of us.</p>
<p>Wondering if you’ve got a cell phone problem? <a href="http://www.noanxiety.com/tests/cell-phone-addiction-test.html">Take the test.</a></p>
<p><font size="1" face="arial"><i>Thanks to Mandy for her contributions to this post</i></font></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/knoticelunchpail.wordpress.com/7262/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/knoticelunchpail.wordpress.com/7262/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/knoticelunchpail.wordpress.com/7262/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/knoticelunchpail.wordpress.com/7262/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/knoticelunchpail.wordpress.com/7262/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/knoticelunchpail.wordpress.com/7262/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/knoticelunchpail.wordpress.com/7262/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/knoticelunchpail.wordpress.com/7262/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/knoticelunchpail.wordpress.com/7262/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/knoticelunchpail.wordpress.com/7262/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/knoticelunchpail.wordpress.com/7262/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/knoticelunchpail.wordpress.com/7262/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/knoticelunchpail.wordpress.com/7262/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/knoticelunchpail.wordpress.com/7262/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=lunchpail.knotice.com&#038;blog=3455516&#038;post=7262&#038;subd=knoticelunchpail&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://lunchpail.knotice.com/2012/05/02/phone-phobia-are-you-a-smartphone-addict/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/a3ece77befebde6afbd28a6375319f9f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">knoticemhatton</media:title>
		</media:content>

		<media:content url="http://www.knotice.com/thelunchpail/images/micahHatton.jpg" medium="image">
			<media:title type="html">Micah Hatton</media:title>
		</media:content>
	</item>
		<item>
		<title>Closing the Curtains on Bad Mobile Experiences</title>
		<link>http://lunchpail.knotice.com/2012/04/30/closing-the-curtains-on-bad-mobile-experiences/</link>
		<comments>http://lunchpail.knotice.com/2012/04/30/closing-the-curtains-on-bad-mobile-experiences/#comments</comments>
		<pubDate>Mon, 30 Apr 2012 18:07:02 +0000</pubDate>
		<dc:creator>Elizabeth Huebner</dc:creator>
				<category><![CDATA[Mobile Marketing]]></category>
		<category><![CDATA[bad mobile experiences]]></category>
		<category><![CDATA[example of good and bad mobile experience for retailers]]></category>
		<category><![CDATA[good mobile experiences]]></category>
		<category><![CDATA[mobile experiences]]></category>
		<category><![CDATA[mobile optimized email]]></category>

		<guid isPermaLink="false">http://lunchpail.knotice.com/?p=7201</guid>
		<description><![CDATA[I recently decided I was going to give my living room a spring makeover, and clear everything out and start from scratch. Already having a love for design, I previously signed up for email and mail from companies such as Restoration Hardware and West Elm. On any given week, they send me approximately 3 – [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=lunchpail.knotice.com&#038;blog=3455516&#038;post=7201&#038;subd=knoticelunchpail&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<div id="topGraph"><img src="http://www.knotice.com/thelunchpail/images/elizabethhuebner.jpg" alt="Elizabeth Huebner " width="90" height="132" />I recently decided I was going to give my living room a spring makeover, and clear everything out and start from scratch. Already having a love for design, I previously signed up for email and mail from companies such as Restoration Hardware and West Elm. On any given week, they send me approximately 3 – 4 emails each and I always open.</div>
<div id="topGraph">With my spring makeover in full swing, I was ready to take action and make purchases. Unfortunately, for some of these companies, my interactions with them deterred me from making purchases and opening future communications.</div>
<p>One specific item I was looking for was curtains. I received a direct mail piece from Restoration Hardware where I found a set that would work perfectly in my space, but were just too expensive.</p>
<p>A few days later I received an email with the subject line: Special Pre-Season Savings of 15% on Our Entire Collection. Upon opening, I immediately saw the curtains I wanted, and knew I had to make them mine.</p>
<div id="attachment_7202" class="wp-caption aligncenter" style="width: 209px"><a href="http://knoticelunchpail.files.wordpress.com/2012/04/phonee-mail.png"><img src="http://knoticelunchpail.files.wordpress.com/2012/04/phonee-mail.png?w=199&h=300" alt="" title="PhoneE-mail" width="199" height="300" class="size-medium wp-image-7202" /></a><p class="wp-caption-text">This image shows how the email from Restoration Hardware rendered on my phone.</p></div>
<p>When I clicked on the image within the email it took me directly to the drapery section of the Restoration Hardware mobile website (see image on left). Immediately my experience started to go south. I could barely read the content on site or navigate around.  The font was too small and my fingers were too large to select what I wanted. The site clearly wasn’t mobile optimized.</p>
<div id="attachment_7203" class="wp-caption aligncenter" style="width: 209px"><a href="http://knoticelunchpail.files.wordpress.com/2012/04/clickthroughwebsite.png"><img src="http://knoticelunchpail.files.wordpress.com/2012/04/clickthroughwebsite.png?w=199&h=300" alt="" title="ClickThroughWebsite" width="199" height="300" class="size-medium wp-image-7203" /></a><p class="wp-caption-text">This image shows the content on Restoration Hardware’s website I was presented when I clicked through from their original email.  </p></div>
<p>Out of curiosity, I went back to the original e-mail and clicked on the mobile link at the top of the email to see if somehow I was missing the mobile optimized content.</p>
<p>Unfortunately, the result of my click was a very basic HTML version similar to a text version (see image at right). It was my last attempt to be patient and to try to work through it all. In the end, Restoration Hardware lost my business.</p>
<div id="attachment_7222" class="wp-caption aligncenter" style="width: 210px"><a href="http://knoticelunchpail.files.wordpress.com/2012/04/restoration_mobileemailversion.jpg"><img src="http://knoticelunchpail.files.wordpress.com/2012/04/restoration_mobileemailversion.jpg?w=200&h=300" alt="" title="Restoration_MobileEmailVersion" width="200" height="300" class="size-medium wp-image-7222" /></a><p class="wp-caption-text">This is Restoration Hardware’s version of the email optimized for mobile that you see when you click on the mobile link. </p></div>
<p>I continued my search for the perfect curtains through a new vendor, West Elm. I received an email with an enticing offer to save 15% on my next purchase. Once I clicked through, to my delight, I was provided an amazing mobile experience, found the curtains I wanted and they will soon to be hanging in my newly finished living room.</p>
<div id="attachment_7230" class="wp-caption alignleft" style="width: 210px"><a href="http://knoticelunchpail.files.wordpress.com/2012/04/westelmlandingpage.png"><img src="http://knoticelunchpail.files.wordpress.com/2012/04/westelmlandingpage.png?w=200&h=300" alt="" title="WestElmLandingPage" width="200" height="300" class="size-medium wp-image-7230" /></a><p class="wp-caption-text">This image shows the content on West Elm’s website I was presented when I clicked through from their original email, mobile optimized. </p></div>
<div id="attachment_7231" class="wp-caption alignright" style="width: 210px"><a href="http://knoticelunchpail.files.wordpress.com/2012/04/westelmproductpage.png"><img src="http://knoticelunchpail.files.wordpress.com/2012/04/westelmproductpage.png?w=200&h=300" alt="" title="WestElmProductPage" width="200" height="300" class="size-medium wp-image-7231" /></a><p class="wp-caption-text">This image shows how easy it is to navigate the content and find the information consumers are looking for. </p></div>
<p>Here at Knotice, we recently published our <a href="http://www.knotice.com/reports/Knotice_Mobile_Email_Opens_Report_SecondHalf2011.pdf">mobile email opens report for the second half of 2011</a>, where we have seen more consumers continue to open emails on mobile devices or tablets. Companies need to address and understand the visual presentation of this content, as well as user experience in these situations.</p>
<p>From my experience, it can become a costly lesson for retailers if they don’t adjust their strategy to optimize email content and direct the click through to a mobile optimized site when applicable. </p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/knoticelunchpail.wordpress.com/7201/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/knoticelunchpail.wordpress.com/7201/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/knoticelunchpail.wordpress.com/7201/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/knoticelunchpail.wordpress.com/7201/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/knoticelunchpail.wordpress.com/7201/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/knoticelunchpail.wordpress.com/7201/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/knoticelunchpail.wordpress.com/7201/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/knoticelunchpail.wordpress.com/7201/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/knoticelunchpail.wordpress.com/7201/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/knoticelunchpail.wordpress.com/7201/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/knoticelunchpail.wordpress.com/7201/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/knoticelunchpail.wordpress.com/7201/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/knoticelunchpail.wordpress.com/7201/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/knoticelunchpail.wordpress.com/7201/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=lunchpail.knotice.com&#038;blog=3455516&#038;post=7201&#038;subd=knoticelunchpail&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://lunchpail.knotice.com/2012/04/30/closing-the-curtains-on-bad-mobile-experiences/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/0a8418cd1eba00f3aa9bb9c48258efc0?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ehuebner1985</media:title>
		</media:content>

		<media:content url="http://www.knotice.com/thelunchpail/images/elizabethhuebner.jpg" medium="image">
			<media:title type="html">Elizabeth Huebner </media:title>
		</media:content>

		<media:content url="http://knoticelunchpail.files.wordpress.com/2012/04/phonee-mail.png?w=199" medium="image">
			<media:title type="html">PhoneE-mail</media:title>
		</media:content>

		<media:content url="http://knoticelunchpail.files.wordpress.com/2012/04/clickthroughwebsite.png?w=199" medium="image">
			<media:title type="html">ClickThroughWebsite</media:title>
		</media:content>

		<media:content url="http://knoticelunchpail.files.wordpress.com/2012/04/restoration_mobileemailversion.jpg?w=200" medium="image">
			<media:title type="html">Restoration_MobileEmailVersion</media:title>
		</media:content>

		<media:content url="http://knoticelunchpail.files.wordpress.com/2012/04/westelmlandingpage.png?w=200" medium="image">
			<media:title type="html">WestElmLandingPage</media:title>
		</media:content>

		<media:content url="http://knoticelunchpail.files.wordpress.com/2012/04/westelmproductpage.png?w=200" medium="image">
			<media:title type="html">WestElmProductPage</media:title>
		</media:content>
	</item>
		<item>
		<title>Independent Case Study Highlights Oreck’s Success</title>
		<link>http://lunchpail.knotice.com/2012/04/27/independent-case-study-highlights-orecks-success/</link>
		<comments>http://lunchpail.knotice.com/2012/04/27/independent-case-study-highlights-orecks-success/#comments</comments>
		<pubDate>Fri, 27 Apr 2012 16:09:21 +0000</pubDate>
		<dc:creator>Knotice</dc:creator>
				<category><![CDATA[Best Practices Insight]]></category>
		<category><![CDATA[forrester research case study]]></category>
		<category><![CDATA[Knotice case study]]></category>
		<category><![CDATA[oreck]]></category>
		<category><![CDATA[oreck case study]]></category>
		<category><![CDATA[unified view of the customer]]></category>
		<category><![CDATA[universal profile]]></category>
		<category><![CDATA[Universal Profile Management]]></category>

		<guid isPermaLink="false">http://lunchpail.knotice.com/?p=7189</guid>
		<description><![CDATA[Just yesterday, Forrester Research, Inc. released an independent case study detailing how Knotice customer, Oreck, was able to boost ROI with more relevant, effective messaging (generating 10x more revenue on Oreck.com) after partnering with us. Their research noted that our Universal Profile Management System allowed Oreck to create a robust warehouse of customer-centric profile data. [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=lunchpail.knotice.com&#038;blog=3455516&#038;post=7189&#038;subd=knoticelunchpail&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Just yesterday, Forrester Research, Inc. released an independent case study detailing how Knotice customer, Oreck, was able to boost ROI with more relevant, effective messaging (generating 10x more revenue on Oreck.com) after partnering with us.  Their research noted that our <a href="http://www.knotice.com/upm/upm-index.html">Universal Profile Management System</a> allowed Oreck to create a robust warehouse of customer-centric profile data. Having all that data in one messaging system allowed Oreck to automate their customer-focused marketing approach across digital touchpoints, and to streamline messaging (email, display and website personalization), all within a single system. It’s a powerful solution, and it’s great to have Forrester incorporate this example into their body of research.</p>
<p>While some marketers continue to struggle with fragmented data and despite workarounds to try and unite disparate data sources, Oreck abandoned the channel-focused approach and set out to integrate all existing customer information to get <a href="http://www.knotice.com/what-we-do/whatwedo-index.html">a unified view of its customers across digital channels</a>, to better engage those customers.</p>
<p>According to the case study entitled “Case Study: Oreck Improves Media Spend ROI By Taking A Unified View Of The Customer,” Oreck was able to “unify data and connect the digital dots,” improve the customer experience, shorten lead-to-close cycles, and decrease abandoned shopping carts. They also said Oreck’s monthly ROI was as high as 184% compared to the baseline.</p>
<p>Other points of interest include:</p>
<ul>
<li>Three phases Oreck took to unify their messaging, increasing the likelihood of customers to convert;</li>
<p></p>
<li>How they enjoyed a significant lift in conversions based on number of channels used within a multi-channel approach;</li>
<p></p>
<li>The value of automating the personalization of each customer’s website experience based on individual data, and more.</li>
</ul>
<p>According to the report, “Oreck decided it was time to get smart about impression delivery across multiple channels. Working with partner Knotice, Oreck created a unified view of the customer to effectively target and deliver brand messages with improved relevance to each unique customer across multiple channels.”</p>
<p>We invite you to <a href="http://www.knotice.com/whitepapers/forrester-oreck-case-study/">download the case study here</a>. And if you’d like to learn more and discuss how the Oreck example could apply to your unique needs, just shoot us an email at <a href="mailto:info@knotice.com">info@knotice.com</a>.      </p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/knoticelunchpail.wordpress.com/7189/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/knoticelunchpail.wordpress.com/7189/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/knoticelunchpail.wordpress.com/7189/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/knoticelunchpail.wordpress.com/7189/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/knoticelunchpail.wordpress.com/7189/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/knoticelunchpail.wordpress.com/7189/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/knoticelunchpail.wordpress.com/7189/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/knoticelunchpail.wordpress.com/7189/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/knoticelunchpail.wordpress.com/7189/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/knoticelunchpail.wordpress.com/7189/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/knoticelunchpail.wordpress.com/7189/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/knoticelunchpail.wordpress.com/7189/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/knoticelunchpail.wordpress.com/7189/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/knoticelunchpail.wordpress.com/7189/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=lunchpail.knotice.com&#038;blog=3455516&#038;post=7189&#038;subd=knoticelunchpail&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://lunchpail.knotice.com/2012/04/27/independent-case-study-highlights-orecks-success/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/975c91e9410cb3b0acc6906f1afbbd48?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">knoticegroup</media:title>
		</media:content>
	</item>
		<item>
		<title>Tips for self-service marketers: More on HTML tables</title>
		<link>http://lunchpail.knotice.com/2012/04/25/tips-for-self-service-marketers-more-on-html-tables/</link>
		<comments>http://lunchpail.knotice.com/2012/04/25/tips-for-self-service-marketers-more-on-html-tables/#comments</comments>
		<pubDate>Wed, 25 Apr 2012 16:24:01 +0000</pubDate>
		<dc:creator>Mike D'Agruma</dc:creator>
				<category><![CDATA[Design Tips]]></category>
		<category><![CDATA[email marketing]]></category>
		<category><![CDATA[creating html tables in an email]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[how to incorporate css into html table design]]></category>
		<category><![CDATA[html table construction]]></category>
		<category><![CDATA[html tips]]></category>

		<guid isPermaLink="false">http://lunchpail.knotice.com/?p=7171</guid>
		<description><![CDATA[Most email clients lack support for recent HTML and CSS technologies, which is why tables are the best way to build entire HTML emails. Tables may be dated, but they’re bulletproof. Every Web browser and email client can read them. In a previous post on more complicated HTML table builds, I looked at a wide [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=lunchpail.knotice.com&#038;blog=3455516&#038;post=7171&#038;subd=knoticelunchpail&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<div id="topGraph"><img src="http://www.knotice.com/thelunchpail/images/Mikedagruma.jpg" alt="Mike D'Agruma" width="120" height="132" />Most email clients lack support for recent HTML and CSS technologies, which is why tables are the best way to build entire HTML emails. Tables may be dated, but they’re bulletproof. Every Web browser and email client can read them.</div>
<div id="topGraph">In a <a href="http://lunchpail.knotice.com/2012/03/14/how-to-controlling-the-elements-of-an-html-table/">previous post on more complicated HTML table builds</a>, I looked at a wide variety of HTML elements. This time, I’ll look at how CSS is incorporated into HTML table design.</div>
<p>When building web pages, CSS is usually included in head of an HTML document and broken out into style blocks. This separates the stylistic elements from the HTML structure, allowing for a more efficient code base.  It also ensures your content has consistent styling – one edit made to a CSS style block is one edit made to every single element associated with it.</p>
<p>Unfortunately, just about every email client will throw out any style block it happens to come across. The same goes for jQuery scripts.</p>
<p>That doesn’t mean CSS is of no use when building HTML tables. It just means designers can’t use style blocks to ensure consistent rendering. They have to use inline style.</p>
<p>Inline style is CSS style applied to a single element, and must be applied to every element you want it on. So, if you want all of the text in your data cells to have an Arial font-face, you have to add inline style to each
<td> tag in your code.</p>
<p>Fortunately, nothing really changes when using inline style versus a style sheet (other than being time-consuming) – style properties are written the same way they normally would, with the exception that they need to be written on one line.</p>
<p>The following is a snippet of the HTML table code used as the main example in the last post. In this instance, I applied inline style to the data cell that holds the headline text. The “Date” cell text has no style associated with it (with the exception of the HTML italics tags) to demonstrate how a web browser will apply default font settings if content is left untouched:</p>
<p><img src="http://knoticelunchpail.files.wordpress.com/2012/04/table1.jpg?w=500&h=126" alt="" title="table1" width="500" height="126" class="aligncenter size-medium wp-image-7172" /></p>
<p>What it will look like in an email and on the web:</p>
<p><img src="http://knoticelunchpail.files.wordpress.com/2012/04/table2.jpg?w=500&h=78" alt="" title="table2" width="500" height="78" class="aligncenter size-medium wp-image-7173" /></p>
<p>There are numerous style properties that can be used when implementing inline style in HTML emails, though designers should always err on the side of caution when choosing exactly which ones to use. A good example is the use of the padding and margin properties in data cells. Though they’re more basic style properties, padding and margin styles can be extremely unreliable – particularly in Outlook.</p>
<p>Experience is the best instructor when it comes to figuring out which style properties can be relied upon consistently and which can’t. There are some good reference materials available online, though. A personal favorite of mine is Campaign Monitor’s Guide to CSS Support in Email. This guide provides a list of common email clients, and which specific style properties each accept.</p>
<p>When in doubt – and it really pains me to write this – the surefire solution is usually the least efficient. It’s a contrary opinion to the one I hold on solving standard web page design problems, but there’s nothing standard about HTML email design. If there were, no one would be using tables and inline style. The entire process is inefficient from the get-go.</p>
<p>With that in mind, there’s no reason not to take an additional 15 to 30 minutes to make sure your code is cross-client compliant. If experience really is the best instructor, then one of the first lessons it will teach is that an extra half-hour spent during the first build will save hours of time dealing with the rendering issues your quality assurance department will inevitably find during testing.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/knoticelunchpail.wordpress.com/7171/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/knoticelunchpail.wordpress.com/7171/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/knoticelunchpail.wordpress.com/7171/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/knoticelunchpail.wordpress.com/7171/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/knoticelunchpail.wordpress.com/7171/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/knoticelunchpail.wordpress.com/7171/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/knoticelunchpail.wordpress.com/7171/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/knoticelunchpail.wordpress.com/7171/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/knoticelunchpail.wordpress.com/7171/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/knoticelunchpail.wordpress.com/7171/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/knoticelunchpail.wordpress.com/7171/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/knoticelunchpail.wordpress.com/7171/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/knoticelunchpail.wordpress.com/7171/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/knoticelunchpail.wordpress.com/7171/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=lunchpail.knotice.com&#038;blog=3455516&#038;post=7171&#038;subd=knoticelunchpail&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://lunchpail.knotice.com/2012/04/25/tips-for-self-service-marketers-more-on-html-tables/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7e2a87a8c2cc6c19ea94dec408e05b40?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">mdagruma</media:title>
		</media:content>

		<media:content url="http://www.knotice.com/thelunchpail/images/Mikedagruma.jpg" medium="image">
			<media:title type="html">Mike D&#039;Agruma</media:title>
		</media:content>

		<media:content url="http://knoticelunchpail.files.wordpress.com/2012/04/table1.jpg?w=300" medium="image">
			<media:title type="html">table1</media:title>
		</media:content>

		<media:content url="http://knoticelunchpail.files.wordpress.com/2012/04/table2.jpg?w=300" medium="image">
			<media:title type="html">table2</media:title>
		</media:content>
	</item>
	</channel>
</rss>
