<?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/" version="2.0">

<channel>
	<title>Retro Edge Web Design</title>
	
	<link>http://www.retroedgewebdesign.co.uk</link>
	<description />
	<lastBuildDate>Tue, 22 May 2012 20:03:47 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/retroedgewebdesign" /><feedburner:info xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" uri="retroedgewebdesign" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item>
		<title>Responsive CSS Frameworks</title>
		<link>http://www.retroedgewebdesign.co.uk/blog/responsive-css-frameworks</link>
		<comments>http://www.retroedgewebdesign.co.uk/blog/responsive-css-frameworks#comments</comments>
		<pubDate>Sun, 15 Apr 2012 16:41:12 +0000</pubDate>
		<dc:creator>Paul Clapp</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Responsive CSS Frameworks]]></category>
		<category><![CDATA[Responsive Design]]></category>
		<category><![CDATA[Twitter Bootstrap]]></category>

		<guid isPermaLink="false">http://www.retroedgewebdesign.co.uk/?p=3396</guid>
		<description><![CDATA[Love it or hate it, responsive design is the talk of the design community at the moment. Take a look at these responsive CSS frameworks.]]></description>
			<content:encoded><![CDATA[<p>Love it or hate it, responsive design is the talk of the design community at the moment. The hype isn&#8217;t unfounded, if current trends with mobile devices continue, by 2015 more of us will be using our smart phones to view the web than our Macs or PC&#8217;s. Below are just a few examples of the responsive CSS frameworks out there. </p>
<h2>Twitter Bootstrap</h2>
<p><a href="http://twitter.github.com/bootstrap/" class="frameroll"><img src="http://www.retroedgewebdesign.co.uk/images/blog/responsive-css-frameworks/twitter-bootstrap.jpg" alt="Twitter Bootstrap"></a></p>
<h2>320 and up</h2>
<p><a href="http://stuffandnonsense.co.uk/projects/320andup/" class="frameroll"><img src="http://www.retroedgewebdesign.co.uk/images/blog/responsive-css-frameworks/320-and-up.jpg" alt="320 and up"></a></p>
<h2>Foundation</h2>
<p><a href="http://foundation.zurb.com/" class="frameroll"><img src="http://www.retroedgewebdesign.co.uk/images/blog/responsive-css-frameworks/foundation.jpg" alt="Foundation"></a></p>
<h2>MQ Framework</h2>
<p><a href="http://mqframework.com/" class="frameroll"><img src="http://www.retroedgewebdesign.co.uk/images/blog/responsive-css-frameworks/mq-framework.jpg" alt="MQ Framework"></a></p>
<h2>Fluid Baseline Grid</h2>
<p><a href="http://fluidbaselinegrid.com/" class="frameroll"><img src="http://www.retroedgewebdesign.co.uk/images/blog/responsive-css-frameworks/fluid-baseline-grid.jpg" alt="Fluid Baseline Grid"></a></p>

<p><a href="http://feedads.g.doubleclick.net/~a/zydwJ0OpIAmFkqbtpAEDKKAkOjI/0/da"><img src="http://feedads.g.doubleclick.net/~a/zydwJ0OpIAmFkqbtpAEDKKAkOjI/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/zydwJ0OpIAmFkqbtpAEDKKAkOjI/1/da"><img src="http://feedads.g.doubleclick.net/~a/zydwJ0OpIAmFkqbtpAEDKKAkOjI/1/di" border="0" ismap="true"></img></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.retroedgewebdesign.co.uk/blog/responsive-css-frameworks/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>IE CSS Tricks</title>
		<link>http://www.retroedgewebdesign.co.uk/tutorials/internet-expolorer-css-tricks</link>
		<comments>http://www.retroedgewebdesign.co.uk/tutorials/internet-expolorer-css-tricks#comments</comments>
		<pubDate>Wed, 11 Apr 2012 18:40:08 +0000</pubDate>
		<dc:creator>Paul Clapp</dc:creator>
				<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://www.retroedgewebdesign.co.uk/?p=3374</guid>
		<description><![CDATA[Most web designers and developers will know the problems Internet Explorer can cause. The following tips serve up a few ways to assist with those pesky IE bugs.]]></description>
			<content:encoded><![CDATA[<p>Most web designers and developers will know the problems Internet Explorer can cause. Normally when your site is just about to go live you remember that finally IE check, developing in Chrome has been great but what about IE, that&#8217;s a whole other story! The following tips serve up a few ways to assist with those pesky IE bugs.</p>
<hr />
<h2>IE CSS Hacks</h2>
<p>Using the following hacks in your CSS can help solve those minor IE problems.</p>
<pre class="brush: css; gutter: true; first-line: 1; highlight: []; html-script: false">
img {
border-color: #000000; /* standard CSS for all browser */
border-color : #ffffff\9; /* IE8 and below */
*border-color : #cc0000; /* IE7 and below */
_border-color : #666666; /* IE6 */
}
</pre>
<hr />
<h2>Conditional Formatting</h2>
<p>Use conditional formatting in your HTML to add IE specific code.</p>
<pre class="brush: html; gutter: true; first-line: 1; highlight: []; html-script: false">&lt;!--[if IE 8]&gt;
Do what you need to fix IE8.
&lt;![endif]--&gt; </pre>
<p>The principles work the same for other versions of IE, for example.</p>
<pre class="brush: html; gutter: true; first-line: 1; highlight: []; html-script: false">&lt;!--[if IE 7]&gt;
Do what you need to fix IE7.
&lt;![endif]--&gt; </pre>
<pre class="brush: html; gutter: true; first-line: 1; highlight: []; html-script: false">&lt;!--[if IE 6]&gt;
Do what you need to fix IE6.
&lt;![endif]--&gt; </pre>
<p>You can use conditional formatting to target an IE specific stylesheet, for ezample:</p>
<pre class="brush: html; gutter: true; first-line: 1; highlight: []; html-script: false">&lt;!--[if IE 7]&gt;
	&lt;link href=&quot;ie7.css&quot; rel=&quot;stylesheet&quot; type=&quot;text/css&quot; /&gt;
&lt;![endif]--&gt;</pre>
<p>If you want a specific stylesheet for all IE browsers then use:</p>
<pre class="brush: html; gutter: true; first-line: 1; highlight: []; html-script: false">&lt;!--[if IE]&gt;
	&lt;link href=&quot;ie.css&quot; rel=&quot;stylesheet&quot; type=&quot;text/css&quot; /&gt;
&lt;![endif]--&gt;</pre>

<p><a href="http://feedads.g.doubleclick.net/~a/0cT-fgpOIBVOTEhSMkQ7Hq1jqh0/0/da"><img src="http://feedads.g.doubleclick.net/~a/0cT-fgpOIBVOTEhSMkQ7Hq1jqh0/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/0cT-fgpOIBVOTEhSMkQ7Hq1jqh0/1/da"><img src="http://feedads.g.doubleclick.net/~a/0cT-fgpOIBVOTEhSMkQ7Hq1jqh0/1/di" border="0" ismap="true"></img></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.retroedgewebdesign.co.uk/tutorials/internet-expolorer-css-tricks/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Instagram</title>
		<link>http://www.retroedgewebdesign.co.uk/blog/instagram</link>
		<comments>http://www.retroedgewebdesign.co.uk/blog/instagram#comments</comments>
		<pubDate>Mon, 09 Apr 2012 10:46:53 +0000</pubDate>
		<dc:creator>Paul Clapp</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Social Media]]></category>

		<guid isPermaLink="false">http://www.retroedgewebdesign.co.uk/?p=3329</guid>
		<description><![CDATA[Instagram is a photo sharing App for your iPhone ... Snap a picture, choose a filter to transform its look and feel, then post to Instagram.]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.retroedgewebdesign.co.uk/wp-content/uploads/2012/04/instagram.png" alt="Follow me on Instagram" title="Follow me on Instagram" style="margin-left:20px;" /></p>

<p><a href="http://feedads.g.doubleclick.net/~a/Gm4wqYO5YUebmMwvw_ssiJPfVfo/0/da"><img src="http://feedads.g.doubleclick.net/~a/Gm4wqYO5YUebmMwvw_ssiJPfVfo/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/Gm4wqYO5YUebmMwvw_ssiJPfVfo/1/da"><img src="http://feedads.g.doubleclick.net/~a/Gm4wqYO5YUebmMwvw_ssiJPfVfo/1/di" border="0" ismap="true"></img></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.retroedgewebdesign.co.uk/blog/instagram/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Edinburgh Wedding Company</title>
		<link>http://www.retroedgewebdesign.co.uk/web-portfolio/edinburgh-wedding-company-redesign</link>
		<comments>http://www.retroedgewebdesign.co.uk/web-portfolio/edinburgh-wedding-company-redesign#comments</comments>
		<pubDate>Mon, 09 Apr 2012 09:42:21 +0000</pubDate>
		<dc:creator>Paul Clapp</dc:creator>
				<category><![CDATA[Web Portfolio]]></category>
		<category><![CDATA[E-commerce]]></category>
		<category><![CDATA[edinburgh]]></category>
		<category><![CDATA[lemonstand]]></category>

		<guid isPermaLink="false">http://www.retroedgewebdesign.co.uk/?p=3324</guid>
		<description><![CDATA[
Project Overview
Over the last few years The Edinburgh Wedding Company has grown in size and as their web presence grew it became clear to the company that their Zen Cart powered e-commerce solution was in need of an overhaul. Having worked with The Edinburgh Wedding Company for several years they asked my advice and I [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://edinburghweddingcompany.com/" class="frameroll" target="_blank"><img src="http://www.retroedgewebdesign.co.uk/images/web-portfolio/large/edinburgh-wedding-company-new.jpg" alt="Edinburgh Wedding Company" title="Edinburgh Wedding Company" /></a></p>
<h2>Project Overview</h2>
<p>Over the last few years The Edinburgh Wedding Company has grown in size and as their web presence grew it became clear to the company that their Zen Cart powered e-commerce solution was in need of an overhaul. Having worked with The Edinburgh Wedding Company for several years they asked my advice and I instantly recommend a site redesign using LemonStand. </p>
<p>The new Edinburgh Wedding Company web site has launched today. Built using LemonStand the new web site offers an array of features that although not impossible would have taken weeks to develop using Zen Cart. Not only has LemonStand allowed me to create a slicker design and feature rich web site but the backend system means the Edinburgh Wedding Company can now concentrate on generating more sales rather than navigating a clunky admin panel. </p>

<p><a href="http://feedads.g.doubleclick.net/~a/NKsuAthrWhFGqdLyrpLDW66wpss/0/da"><img src="http://feedads.g.doubleclick.net/~a/NKsuAthrWhFGqdLyrpLDW66wpss/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/NKsuAthrWhFGqdLyrpLDW66wpss/1/da"><img src="http://feedads.g.doubleclick.net/~a/NKsuAthrWhFGqdLyrpLDW66wpss/1/di" border="0" ismap="true"></img></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.retroedgewebdesign.co.uk/web-portfolio/edinburgh-wedding-company-redesign/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PSC Training &amp; Development</title>
		<link>http://www.retroedgewebdesign.co.uk/web-portfolio/psc-training-development</link>
		<comments>http://www.retroedgewebdesign.co.uk/web-portfolio/psc-training-development#comments</comments>
		<pubDate>Wed, 28 Mar 2012 19:50:56 +0000</pubDate>
		<dc:creator>Paul Clapp</dc:creator>
				<category><![CDATA[Web Portfolio]]></category>

		<guid isPermaLink="false">http://www.retroedgewebdesign.co.uk/?p=3291</guid>
		<description><![CDATA[
]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.psctraining.co.uk/" class="frameroll" target="_blank"><img src="http://www.retroedgewebdesign.co.uk/wp-content/uploads/2012/03/psc-training1.jpg" alt="PSC Training &amp; Development" title="PSC Training &amp; Development" /></a></p>

<p><a href="http://feedads.g.doubleclick.net/~a/-VR2xaaZ_45xwzL6XQiXyBFbEpw/0/da"><img src="http://feedads.g.doubleclick.net/~a/-VR2xaaZ_45xwzL6XQiXyBFbEpw/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/-VR2xaaZ_45xwzL6XQiXyBFbEpw/1/da"><img src="http://feedads.g.doubleclick.net/~a/-VR2xaaZ_45xwzL6XQiXyBFbEpw/1/di" border="0" ismap="true"></img></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.retroedgewebdesign.co.uk/web-portfolio/psc-training-development/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SEO Review of Never Paint Again</title>
		<link>http://www.retroedgewebdesign.co.uk/blog/seo-review-of-never-paint-again</link>
		<comments>http://www.retroedgewebdesign.co.uk/blog/seo-review-of-never-paint-again#comments</comments>
		<pubDate>Tue, 13 Mar 2012 19:10:28 +0000</pubDate>
		<dc:creator>Paul Clapp</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://www.retroedgewebdesign.co.uk/?p=3263</guid>
		<description><![CDATA[Having worked with Never Paint Again for a number of years it's good to see the latest version of their web site getting some positive feedback.]]></description>
			<content:encoded><![CDATA[<p>Having worked with Never Paint Again for a number of years it&#8217;s good to see the latest version of their web site getting some positive feedback. I&#8217;m rather pleased with my efforts if I do say so myself.</p>
<p><iframe width="640" height="360" src="http://www.youtube.com/embed/gVhIvIBp_cw" frameborder="0" allowfullscreen></iframe></p>

<p><a href="http://feedads.g.doubleclick.net/~a/R6MK_IzFV5yZNOeXsVlHcwxEtQ8/0/da"><img src="http://feedads.g.doubleclick.net/~a/R6MK_IzFV5yZNOeXsVlHcwxEtQ8/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/R6MK_IzFV5yZNOeXsVlHcwxEtQ8/1/da"><img src="http://feedads.g.doubleclick.net/~a/R6MK_IzFV5yZNOeXsVlHcwxEtQ8/1/di" border="0" ismap="true"></img></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.retroedgewebdesign.co.uk/blog/seo-review-of-never-paint-again/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HEAT Academy</title>
		<link>http://www.retroedgewebdesign.co.uk/web-portfolio/heat-academy</link>
		<comments>http://www.retroedgewebdesign.co.uk/web-portfolio/heat-academy#comments</comments>
		<pubDate>Wed, 25 Jan 2012 19:45:56 +0000</pubDate>
		<dc:creator>Paul Clapp</dc:creator>
				<category><![CDATA[Web Portfolio]]></category>
		<category><![CDATA[Web Design Devon]]></category>
		<category><![CDATA[Web Design Plymouth]]></category>
		<category><![CDATA[Web Designers Plymouth]]></category>

		<guid isPermaLink="false">http://www.retroedgewebdesign.co.uk/?p=3241</guid>
		<description><![CDATA[
]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.heatacademy.co.uk/" class="frameroll" target="_blank"><img src="http://www.retroedgewebdesign.co.uk/images/web-portfolio/large/heat-academy.jpg" title="HEAT Academy" alt="HEAT Academy" /></a></p>

<p><a href="http://feedads.g.doubleclick.net/~a/AucwaHTI1_W0eVZTU3K0JnULdLg/0/da"><img src="http://feedads.g.doubleclick.net/~a/AucwaHTI1_W0eVZTU3K0JnULdLg/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/AucwaHTI1_W0eVZTU3K0JnULdLg/1/da"><img src="http://feedads.g.doubleclick.net/~a/AucwaHTI1_W0eVZTU3K0JnULdLg/1/di" border="0" ismap="true"></img></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.retroedgewebdesign.co.uk/web-portfolio/heat-academy/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Black Wednesday: Strike Against SOPA</title>
		<link>http://www.retroedgewebdesign.co.uk/blog/black-wednesday-strike-against-sopa</link>
		<comments>http://www.retroedgewebdesign.co.uk/blog/black-wednesday-strike-against-sopa#comments</comments>
		<pubDate>Wed, 18 Jan 2012 18:13:20 +0000</pubDate>
		<dc:creator>Paul Clapp</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://www.retroedgewebdesign.co.uk/?p=3223</guid>
		<description><![CDATA[An interesting day for the web and anyone that uses it, this may be an American issue at present but you can be sure where America go the UK will follow. ]]></description>
			<content:encoded><![CDATA[<p>An interesting day for the web and anyone that uses it, this may be an American issue at present but you can be sure where America go the UK will follow. </p>
<p>For more info on Sopa check out some of todays news from around the world:</p>
<p><a href="http://www.bbc.co.uk/news/technology-16612628" target="_blank">BBC News &#8211; Sopa: Sites go dark as part of anti-piracy law protests</a><br />
<a href="http://lat.ms/yc7vOe" target="_blank">Los Angeles Times &#8211; SOPA blackout: Bills lose three co-sponsors amid protests</a><br />
<a href="http://www.nytimes.com/2012/01/19/technology/web-protests-piracy-bill-and-2-key-senators-change-course.html" target="_blank">New York Times &#8211; Web Protests Piracy Bills, and Senators Change Course</a><br />
<a href="http://www.thehindu.com/opinion/op-ed/article2811848.ece" target="_blank">The Hindu &#8211; Wikipedia shutdown to protest piracy bills</a></p>
<p>These are a few of the web sites that have been involved in todays black out.</p>
<h2>Strike Against SOPA</h2>
<p><a href="http://sopastrike.com/strike/" target="_blank" class="frameroll"><img src="http://www.retroedgewebdesign.co.uk/images/blog/sopa/sopa.jpg" alt="Strike Against SOPA"></a></p>
<h2>Wikipedia</h2>
<p><a href="http://en.wikipedia.org/wiki/Main_Page" target="_blank" class="frameroll"><img src="http://www.retroedgewebdesign.co.uk/images/blog/sopa/wikipedia.jpg" alt="Wikipedia"></a></p>
<h2>WordPress.org</h2>
<p><a href="http://wordpress.org/" target="_blank" class="frameroll"><img src="http://www.retroedgewebdesign.co.uk/images/blog/sopa/wordpress.jpg" alt="WordPress.org"></a></p>
<h2>Boing Boing</h2>
<p><a href="http://boingboing.net/" target="_blank" class="frameroll"><img src="http://www.retroedgewebdesign.co.uk/images/blog/sopa/boing-boing.jpg" alt="Boing Boing"></a></p>
<h2>Chicknfoot</h2>
<p><a href="http://www.chickenfoot.us/sopa.php" target="_blank" class="frameroll"><img src="http://www.retroedgewebdesign.co.uk/images/blog/sopa/chickenfoot.jpg" alt="Chicknfoot"></a></p>

<p><a href="http://feedads.g.doubleclick.net/~a/pFJNaeZMavDbVEfLg4-8Jjs-3x0/0/da"><img src="http://feedads.g.doubleclick.net/~a/pFJNaeZMavDbVEfLg4-8Jjs-3x0/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/pFJNaeZMavDbVEfLg4-8Jjs-3x0/1/da"><img src="http://feedads.g.doubleclick.net/~a/pFJNaeZMavDbVEfLg4-8Jjs-3x0/1/di" border="0" ismap="true"></img></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.retroedgewebdesign.co.uk/blog/black-wednesday-strike-against-sopa/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>LemonStand</title>
		<link>http://www.retroedgewebdesign.co.uk/blog/lemonstand</link>
		<comments>http://www.retroedgewebdesign.co.uk/blog/lemonstand#comments</comments>
		<pubDate>Mon, 16 Jan 2012 20:13:10 +0000</pubDate>
		<dc:creator>Paul Clapp</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[E-commerce]]></category>
		<category><![CDATA[lemonstand]]></category>

		<guid isPermaLink="false">http://www.retroedgewebdesign.co.uk/?p=3205</guid>
		<description><![CDATA[LemonStand is a flexible, solid and scalable eCommerce platform that you can build any online store with.]]></description>
			<content:encoded><![CDATA[<h2>The only e-commerce solution worth investing in</h2>
<p>Having been a web designer for some time now I&#8217;m always on the look out for tools that can save me time and increase productivity. Having used many e-commerce solutions over the years including Zen Cart, OS Commerce and various e-commerce plugins for WordPress I have often found myself banging my head against my Mac thinking, &#8220;surely there&#8217;s an easier way&#8221;. Well, now there is and it comes in the form of LemonStand, for anyone who&#8217;s used WordPress, LemonStand is the e-commerce equivalent, easy to use, flexible and scalable.</p>
<p>For more information on LemonStand please visit <a href="http://lemonstandapp.com" target="_blank">www.lemonstandapp.com</a>.</p>
<h2>LemonStand Introduction</h2>
<p><iframe class="frame" width="622" height="350" src="http://www.youtube.com/embed/58EfMxTrAXQ" frameborder="0" allowfullscreen></iframe></p>
<h2>Yes it comes with a price tag</h2>
<p>Ok, so many of you may consider the $300 (around £200) price tag a bit high when there are free alternatives out there. If you are using the price tag as an excuse not to get LemonStand&#8230; don&#8217;t. The time you will save in the long run on development costs (it will take a web designer half the time to update a LemonStand site than a Zen Cart one) and keeping the site updated (it will make your life easier too) it really isn&#8217;t worth thinking of it as a cost&#8230; it&#8217;s really more of an investment. The term here to remember is scalability, if you are serous about your e-commerce project invest the money in it now and it will save you time, money and heart ache in the future.</p>
<h2>The skys the limit</h2>
<p>Unlike some of the free e-commerce solutions there are no limitations to what you can achieve with your sites design. Check up some of the below examples and you&#8217;ll soon see the only limit is your imagination. For more examples visit the <a href="http://lemonstandapp.com/gallery/">LemonStand Customer Gallery</a>.</p>
<p><a href="http://shop.unicef.org.uk/" target="_blank" class="frameroll"><img src="http://www.retroedgewebdesign.co.uk/images/blog/lemonstand/unicef.jpg" alt="Unicef"></a><br />
<a href="http://doorstepdairy.com/" target="_blank" class="frameroll"><img src="http://www.retroedgewebdesign.co.uk/images/blog/lemonstand/doorstep-dairy.jpg" alt="Doorstep Dairy"></a><br />
<a href="http://www.owlsandapples.com/" target="_blank" class="frameroll"><img src="http://www.retroedgewebdesign.co.uk/images/blog/lemonstand/owls-and-apples.jpg" alt="Owls &amp; Apples"></a><br />
<a href="http://ribbedtee.com/" target="_blank" class="frameroll"><img src="http://www.retroedgewebdesign.co.uk/images/blog/lemonstand/ribbed-tee.jpg" alt="Ribbed Tee"></a><br />
<a href="http://www.uptothemoon.com/" target="_blank" class="frameroll"><img src="http://www.retroedgewebdesign.co.uk/images/blog/lemonstand/up-the-moon.jpg" alt="Up The Moon"></a></p>

<p><a href="http://feedads.g.doubleclick.net/~a/DLDko2c64XRYfVAk92FjVP-T-90/0/da"><img src="http://feedads.g.doubleclick.net/~a/DLDko2c64XRYfVAk92FjVP-T-90/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/DLDko2c64XRYfVAk92FjVP-T-90/1/da"><img src="http://feedads.g.doubleclick.net/~a/DLDko2c64XRYfVAk92FjVP-T-90/1/di" border="0" ismap="true"></img></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.retroedgewebdesign.co.uk/blog/lemonstand/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Never Paint Again Redesign</title>
		<link>http://www.retroedgewebdesign.co.uk/web-portfolio/never-paint-again-redesign</link>
		<comments>http://www.retroedgewebdesign.co.uk/web-portfolio/never-paint-again-redesign#comments</comments>
		<pubDate>Mon, 16 Jan 2012 19:21:59 +0000</pubDate>
		<dc:creator>Paul Clapp</dc:creator>
				<category><![CDATA[Web Portfolio]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.retroedgewebdesign.co.uk/?p=3194</guid>
		<description><![CDATA[I have been working on and off with Never Paint Again since 2008, with the site having gone through many changes over the years I am excited to be a part of this new redesign. ]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.neverpaintagain.co.uk/" class="frameroll" target="_blank"><img src="http://www.retroedgewebdesign.co.uk/wp-content/uploads/2012/01/npa-large.jpg" title="Never Paint Again" alt="Never Paint Again" /></a></p>
<h2>Project Overview</h2>
<p>I have been working on and off with Never Paint Again since 2008, with the site having gone through many changes over the years I am excited to be a part of it&#8217;s latest manifestation. </p>
<p><img src="http://www.retroedgewebdesign.co.uk/images/web-portfolio/large/never-paint-again.jpg" style="width:300px; float:right; margin:-5px 0 0 10px;" title="Never Paint Again" alt="Never Paint Again" class="frame">Back in early 2008 <a href="http://www.neverpaintagain.co.uk">www.neverpaintagain.co.uk</a> looked quite different. Purely HTML and CSS based the site was over 400 pages of static content and needless to say a bit of a nightmare to update. A change to the header needed 400+ pages to be edited&#8230; individually. So, in 2008 I redesigned the site into a more manageable PHP solution, looking back it wasn&#8217;t the best solution at the time but it made a very large site much easier to manage. </p>
<p>After a year or so and with the emergence of WordPress as more than just a blogging tool, it was clear NPA would be better served on a CMS. Unfortunately largely down to my workload at the time I was unable to undertake the project and work was passed onto another designer. Without going into any details that didn&#8217;t turn out too well and in early 2010 I was asked to undertake some more work for NPA. Along with several other projects tidying up the existing WordPress installation became a priority and a much needed new look was born. </p>
<p>With lots of work still to do on the site you can rest assured there will be many more exciting developments to come and I look forward to working with NPA for many years to come. </p>

<p><a href="http://feedads.g.doubleclick.net/~a/gKeDElmLSj-BYcVb5jmFUnTLNes/0/da"><img src="http://feedads.g.doubleclick.net/~a/gKeDElmLSj-BYcVb5jmFUnTLNes/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/gKeDElmLSj-BYcVb5jmFUnTLNes/1/da"><img src="http://feedads.g.doubleclick.net/~a/gKeDElmLSj-BYcVb5jmFUnTLNes/1/di" border="0" ismap="true"></img></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.retroedgewebdesign.co.uk/web-portfolio/never-paint-again-redesign/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

