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

<channel>
	<title>Deelux: Graphic &#38; Web Design</title>
	<atom:link href="http://www.deeluxdesign.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.deeluxdesign.com</link>
	<description>We are a Cambridge-based studio creating custom solutions for web and print.</description>
	<lastBuildDate>Tue, 07 May 2013 13:16:19 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1</generator>
		<item>
		<title>Update WordPress Custom Fields with AJAX</title>
		<link>http://www.deeluxdesign.com/2011/12/update-wordpress-custom-fields-with-ajax/</link>
		<comments>http://www.deeluxdesign.com/2011/12/update-wordpress-custom-fields-with-ajax/#comments</comments>
		<pubDate>Fri, 02 Dec 2011 02:07:24 +0000</pubDate>
		<dc:creator>Andrew</dc:creator>
				<category><![CDATA[Tutorials & Tips]]></category>

		<guid isPermaLink="false">http://www.deeluxdesign.com/?p=4764</guid>
		<description><![CDATA[Chelsea and I recently designed and developed Vintage or Instagram, a cute little game that tests your ability to distinguish between photos actually taken in the 70&#8242;s and 80&#8242;s and those altered by the Instagram app to appear vintage. The gameplay mechanics (switching between photos, evaluating answers, keeping track of scores) is done with Javascript and [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-full wp-image-4780"  src="http://www.deeluxdesign.com/wp-content/uploads/2011/12/Screen-Shot-2011-12-01-at-9.24.22-PM.png" alt="" width="600" height="242" /></p>
<p>Chelsea and I recently designed and developed <a href="http://vintageorinstagram.com"><em>Vintage or Instagram</em></a>, a cute little game that tests your ability to distinguish between photos actually taken in the 70&#8242;s and 80&#8242;s and those altered by the Instagram app to appear vintage.  The gameplay mechanics (switching between photos, evaluating answers, keeping track of scores) is done with Javascript and jQuery.  We decided to use WordPress to manage the photographs and other content.</p>
<p><span id="more-4764"></span></p>
<h3>The problem</h3>
<p>Just before we were ready to launch the site, Chelsea suggested that we should be tracking users&#8217; scores.  On the face of it, this is a simple idea.  The problem is that we need PHP to store the users&#8217; scores to WordPress&#8217;s mySQL database.  How is this a problem?  When you access a page from its web server, the PHP executes on the server first, the site is passed to your browser, which renders the page from the HTML/CSS and runs the Javascript.  Since our gameplay mechanics are executed on the browser (they&#8217;re Javascript), we can&#8217;t access PHP functions needed to store the scores because they&#8217;ve long since executed.</p>
<h3>Here&#8217;s the windup&#8230;</h3>
<p>How do we get the score from Javascript in the browser to the PHP on the server?  AJAX, of course!  If you don&#8217;t know, AJAX is an acronym for Asynchronous JavaScript and XML.  AJAX is able to send and receive from a web server in the &#8220;background&#8221; of a page, without the user noticing.  In this case, we will use AJAX to send a value (the score) from Javascript back to the web server, load a page, and execute a PHP function that saves the score as a meta value on WordPress page.</p>
<h3>…and the pitch!</h3>
<p>The AJAX setup is dead simple with jQuery:</p>
<div class="codecolorer-container javascript dawn" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br />2<br />3<br />4<br />5<br />6<br /></div></td><td><div class="javascript codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">$.<span style="color: #660066;">ajax</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#123;</span><br />
url<span style="color: #339933;">:</span><span style="color: #3366CC;">'http://vintageorinstagram.com/results/'</span><span style="color: #339933;">,</span><br />
cache<span style="color: #339933;">:</span> <span style="color: #003366; font-weight: bold;">false</span><span style="color: #339933;">,</span><br />
type<span style="color: #339933;">:</span> <span style="color: #3366CC;">'POST'</span><span style="color: #339933;">,</span><br />
data<span style="color: #339933;">:</span> <span style="color: #3366CC;">'score='</span> <span style="color: #339933;">+</span> scorePercent<br />
<span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></div></td></tr></tbody></table></div>
<p>JQuery makes everything so easy, right?  Let&#8217;s break this down. First, <code class="codecolorer javascript dawn"><span class="javascript">url</span></code> calls the page we&#8217;ll set up that contains the PHP functions we need to store the score. Next, I&#8217;ve set cache to <code class="codecolorer javascript dawn"><span class="javascript"><span style="color: #003366; font-weight: bold;">false</span></span></code>, because the user might be playing our game multiple times, and I want to store the user&#8217;s latest score. <code class="codecolorer javascript dawn"><span class="javascript">Type<span style="color: #339933;">:</span> <span style="color: #3366CC;">'POST'</span><span style="color: #339933;">,</span></span></code> indicates that data should be sent to the server rather than recieved. Finally, <code class="codecolorer javascript dawn"><span class="javascript">data</span></code> is the data (duh) we&#8217;re going to pass to the loaded page, in this case, the variable <code class="codecolorer javascript dawn"><span class="javascript">scorePercent</span></code>.</p>
<h3>Bases loaded: put that data to use</h3>
<p>Once we&#8217;ve passed the data from the browser-side Javascript back to the server with AJAX, we can load a PHP page to process the data and store it away in our WordPress tables.  I decided to write the scores to custom field values in a dedicated page in my WordPress setup using the <code class="codecolorer php dawn"><span class="php">update_post_meta<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span></span></code> function.  This function resides on a page template which is assigned to our dedicated page in the backend (I got this idea from Venetian programmer <a href="http://www.emanueleferonato.com/2010/04/01/loading-wordpress-posts-with-ajax-and-jquery/">Emanuele Feronato</a>).  Here&#8217;s the entirety of the page template:</p>
<div class="codecolorer-container php dawn" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;height:200px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br />2<br />3<br />4<br />5<br />6<br />7<br />8<br />9<br />10<br />11<br />12<br />13<br />14<br />15<br />16<br /></div></td><td><div class="php codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #000000; font-weight: bold;">&lt;?php</span> <br />
<span style="color: #666666; font-style: italic;">/* Template Name: AJAX &nbsp;*/</span> <br />
<span style="color: #000000; font-weight: bold;">?&gt;</span><br />
<br />
<span style="color: #000000; font-weight: bold;">&lt;?php</span> <br />
&nbsp; &nbsp; <span style="color: #000088;">$score</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$_POST</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'score'</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">;</span> &nbsp;<span style="color: #666666; font-style: italic;">// get the score from AJAX and save it for PHP &nbsp; &nbsp; &nbsp;</span><br />
&nbsp; &nbsp; <br />
&nbsp; &nbsp; <span style="color: #000088;">$old_score</span> <span style="color: #339933;">=</span> get_post_meta<span style="color: #009900;">&#40;</span> <span style="color: #cc66cc;">436</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'score_'</span> <span style="color: #339933;">.</span> <span style="color: #000088;">$score</span> <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> &nbsp;<span style="color: #666666; font-style: italic;">// get the proper existing custom field value</span><br />
&nbsp; &nbsp; <span style="color: #000088;">$old_total</span> <span style="color: #339933;">=</span> get_post_meta<span style="color: #009900;">&#40;</span> <span style="color: #cc66cc;">436</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'score_total'</span> <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #666666; font-style: italic;">// get the existing total &nbsp; &nbsp; &nbsp;</span><br />
&nbsp; &nbsp; &nbsp;<br />
&nbsp; &nbsp; <span style="color: #000088;">$new_score</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$old_score</span><span style="color: #009900;">&#91;</span><span style="color: #cc66cc;">0</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">+</span> <span style="color: #cc66cc;">1</span><span style="color: #339933;">;</span> <span style="color: #666666; font-style: italic;">// add one to the existing score &nbsp;</span><br />
&nbsp; &nbsp; <span style="color: #000088;">$new_total</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$old_total</span><span style="color: #009900;">&#91;</span><span style="color: #cc66cc;">0</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">+</span> <span style="color: #cc66cc;">1</span><span style="color: #339933;">;</span> <span style="color: #666666; font-style: italic;">// add one to the existing total &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;</span><br />
&nbsp;<br />
&nbsp; &nbsp; update_post_meta<span style="color: #009900;">&#40;</span> <span style="color: #cc66cc;">436</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'score_'</span> <span style="color: #339933;">.</span> <span style="color: #000088;">$score</span><span style="color: #339933;">,</span> <span style="color: #000088;">$new_score</span> <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #666666; font-style: italic;">// load the new value into the custom field </span><br />
&nbsp; &nbsp; update_post_meta<span style="color: #009900;">&#40;</span> <span style="color: #cc66cc;">436</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'score_total'</span><span style="color: #339933;">,</span> <span style="color: #000088;">$new_total</span> <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #666666; font-style: italic;">// load the new value into the custom field </span><br />
<span style="color: #000000; font-weight: bold;">?&gt;</span></div></td></tr></tbody></table></div>
<p>Not much to it, but let&#8217;s break it down.</p>
<p><code class="codecolorer php dawn"><span class="php"><span style="color: #000088;">$score</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$_POST</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'score'</span><span style="color: #009900;">&#93;</span></span></code> pulls the data passed through AJAX and stores it as a new PHP variable <code class="codecolorer php dawn"><span class="php"><span style="color: #000088;">$score</span></span></code>.  We&#8217;re going to store the scores on the page as running totals, with one custom field for each possible score 0%, 20%, 40%, 60%, 80%, or 100% (there are only 5 questions in our game). Since we want the score to be recorded as a running total, we&#8217;ll first need to pull the current value for the user&#8217;s score with the <code class="codecolorer php dawn"><span class="php">get_post_meta<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span></span></code> function.  The first parameter is the ID of the storage page, the second is the custom field key we are going to access.  I&#8217;ve set up the custom field keys as &#8220;score_0,&#8221; &#8220;score_20&#8243;, etc., so <code class="codecolorer php dawn"><span class="php"><span style="color: #0000ff;">'score_'</span> <span style="color: #339933;">.</span> <span style="color: #000088;">$score</span></span></code> will construct the appropriate key based on the user&#8217;s score.</p>
<p>We have the old score, now we need to increase that value by one and then update the custom field value.  <code class="codecolorer php dawn"><span class="php">Get_post_meta<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span></span></code> returns an array, so isolate the first value, add one, and assign it to <code class="codecolorer php dawn"><span class="php"><span style="color: #000088;">$new_score</span></span></code> (you&#8217;ll notice in the code above that I&#8217;m also updating the total as we go).</p>
<p>Finally, we need to replace the old custom field value with the new one we just made with <code class="codecolorer php dawn"><span class="php">update_post_meta<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span></span></code>.  The first parameter is the id of the page with the custom fields, the second is the custom field key we want to update, and the last one is the new value for that key (<code class="codecolorer php dawn"><span class="php"><span style="color: #000088;">$new_score</span></span></code>).  Done with the code!</p>
<h3>Bring it all home</h3>
<p>Back when we were setting up the AJAX, you&#8217;ll remember that I defined a url parameter.  Once you&#8217;ve uploaded the Ajax page template we just created to our theme folder, log in to your WordPress backend, create a new page called &#8220;results,&#8221; and set the page template to &#8220;AJAX.&#8221;  The last thing to do is set up the proper custom fields (score_0 through score_100) and assign them each a value of 0.</p>
<p>To review, the process I&#8217;ve laid out here is meant to move a value from Javascript executed by the browser to a WordPress PHP file on your web server via AJAX, and then store that value in a custom field.  Now, I am not an expert by any stretch on anything I&#8217;ve detailed here.  Do you have improvements to suggest on my methods, dear reader?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.deeluxdesign.com/2011/12/update-wordpress-custom-fields-with-ajax/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>The Subtleties of Signage</title>
		<link>http://www.deeluxdesign.com/2011/09/the-subtleties-of-signage/</link>
		<comments>http://www.deeluxdesign.com/2011/09/the-subtleties-of-signage/#comments</comments>
		<pubDate>Tue, 27 Sep 2011 20:35:50 +0000</pubDate>
		<dc:creator>Chelsea</dc:creator>
				<category><![CDATA[Featured Work]]></category>

		<guid isPermaLink="false">http://www.deeluxdesign.com/?p=3868</guid>
		<description><![CDATA[Summary: Identity, exterior signage, and interior wall graphics for Ecco Pizzeria, an earth-friendly Boston restaurant located on Commonwealth Avenue that specializes in organic pizza, salad, and ice cream. We collaborated with Anthony Piermarini and Hansy Better Barraza of Studio Luz Architects to create an aesthetic environment that would complement their innovative design of the space. Exterior Signage Inspired by pizza [...]]]></description>
			<content:encoded><![CDATA[<p><strong><img class="size-full wp-image-4521 alignnone"  src="http://www.deeluxdesign.com/wp-content/uploads/2011/09/post1.jpg" alt="" width="590" height="458" />Summary:</strong> Identity, exterior signage, and interior wall graphics for Ecco Pizzeria, an earth-friendly Boston restaurant located on Commonwealth Avenue that specializes in organic pizza, salad, and ice cream. We collaborated with Anthony Piermarini and Hansy Better Barraza of Studio Luz Architects to create an aesthetic environment that would complement their innovative design of the space.</p>
<p><span id="more-3868"></span></p>
<h3>Exterior Signage</h3>
<p><img class="size-full wp-image-3913 alignnone"  src="http://www.deeluxdesign.com/wp-content/uploads/2011/09/FACADE-ELEVATION-COLOR.jpg" alt="" width="590" />Inspired by pizza tossing videos, we created a logo of layered amorphic shapes (or what we more lovingly refer to as dough balls.) The organic feel of the exterior signage provides a nice contrast to the geometric treatment of the facade.</p>
<h3>Interior Wall Graphics</h3>
<p><img class="size-full wp-image-4331 alignnone"  src="http://www.deeluxdesign.com/wp-content/uploads/2011/09/Sign_Collage-KEEP.jpg" alt="" width="590" height="462" />We &#8220;exploded&#8221; the logo into individual dough balls, each with its own icon and descriptor to distinguish different areas of the restaurant. Since we drew the icons ourselves, we saved our client money on royalty fees!</p>
<h3>Restroom Explorations</h3>
<p><img class="size-full wp-image-4011 alignnone"  src="http://www.deeluxdesign.com/wp-content/uploads/2011/09/bathroom1.jpg" alt="" width="590" />Our biggest and most unexpected challenge were the restrooms. Defining an entire gender by one symbol was a political minefield neither we nor our client were prepared to navigate. We eventually opted for a fanciful application of toilet paper (see above).</p>
<h3>Happy Client</h3>
<p><img class="size-full wp-image-4269 alignleft"  src="http://www.deeluxdesign.com/wp-content/uploads/2011/09/anthony3.jpg" alt="" width="144" height="160" />“Andrew and Chelsea worked tirelessly to help create a unique identity that contributed to the overall design and experience of the project. Their creativity and easygoing nature allowed for many fresh ideas to emerge, establishing a dynamic synergy between the architecture and graphic work.&#8221;</p>
<p>-<strong>Anthony Piermarini</strong> Principle, <a href="http://studioluz.net/">Studio Luz Architects</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.deeluxdesign.com/2011/09/the-subtleties-of-signage/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>An Exploration in Adaptive Design</title>
		<link>http://www.deeluxdesign.com/2011/09/an-exploration-in-adaptive-design/</link>
		<comments>http://www.deeluxdesign.com/2011/09/an-exploration-in-adaptive-design/#comments</comments>
		<pubDate>Tue, 27 Sep 2011 19:02:29 +0000</pubDate>
		<dc:creator>Chelsea</dc:creator>
				<category><![CDATA[Featured Work]]></category>

		<guid isPermaLink="false">http://www.deeluxdesign.com/?p=4043</guid>
		<description><![CDATA[Summary: Custom WordPress website design, identity, and collateral for Ethelind Coblin Architect, a Manhattan-based firm specializing in residential architecture and interior design including lobbies, apartments, and country homes. The firm asked us to design a website that functioned equally-well in browsers and on mobile devices, so we had to design a flexible and fluid layout [...]]]></description>
			<content:encoded><![CDATA[<p><strong><img class="alignleft size-full wp-image-4423"  src="http://www.deeluxdesign.com/wp-content/uploads/2011/09/port-eca2.jpg" alt="" width="590" height="458" />Summary: </strong>Custom WordPress website design, identity, and collateral for Ethelind Coblin Architect, a Manhattan-based firm specializing in residential architecture and interior design including lobbies, apartments, and country homes. The firm asked us to design a website that functioned equally-well in browsers and on mobile devices, so we had to design a flexible and fluid layout that would adapt to changing screen sizes and resolutions. [<a href="http://www.ethelindcoblinarchitect.com/">Visit site</a>]</p>
<p><span id="more-4043"></span></p>
<h3>Browser</h3>
<p><img class="alignnone size-full wp-image-4161"  src="http://www.deeluxdesign.com/wp-content/uploads/2011/09/imac2.jpg" alt="" width="590" />While the site must appeal to the casual visitor, it&#8217;s primary use is as a portable portfolio for traveling employees. To ensure equally-satisfying user experiences, the browser version called for a minimal interface with buttons and images as navigational elements.</p>
<h3>iPad</h3>
<p><img class="alignleft size-full wp-image-4504"  src="http://www.deeluxdesign.com/wp-content/uploads/2011/09/ipad-collage3.jpg" alt="" width="590" />The biggest challenge in designing sites for mobile devices is creating simple and intuitive navigation; that&#8217;s why our content is touch screen and keyboard accessible. Images are full-screen for maximum impact, and supplemental information is easy to reveal.</p>
<h3>iPhone</h3>
<p><img class="alignleft size-full wp-image-4501"  src="http://www.deeluxdesign.com/wp-content/uploads/2011/09/ipad-collage23.jpg" alt="" width="590" />The iPhone version is of course the most simplified layout. Content is edited and navigation is simple to use on a small screen. This version acts as a prelude: providing the user with enough compelling information to encourage further exploration on a larger device.</p>
<h3>Happy Client</h3>
<p><img class="size-full wp-image-3474 alignleft"  src="http://www.deeluxdesign.com/wp-content/uploads/2011/09/je.jpg" alt="" height="160" />&#8220;Deelux helped us reinvent our office image allowing us to showcase our designs across multiple platforms. Andrew and Chelsea were quick to create solutions to fit our needs, making the design process flow smoothly. They exceeded our expectations in creating a professional website that we are proud of.&#8221;</p>
<p>-<strong>Ethelind Coblin &#038; Jennifer Judge</strong> Principles</p>
]]></content:encoded>
			<wfw:commentRss>http://www.deeluxdesign.com/2011/09/an-exploration-in-adaptive-design/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New Direction for a Non-Profit</title>
		<link>http://www.deeluxdesign.com/2011/08/new-direction-for-a-non-profit/</link>
		<comments>http://www.deeluxdesign.com/2011/08/new-direction-for-a-non-profit/#comments</comments>
		<pubDate>Sun, 28 Aug 2011 17:07:24 +0000</pubDate>
		<dc:creator>Chelsea</dc:creator>
				<category><![CDATA[Featured Work]]></category>

		<guid isPermaLink="false">http://www.deeluxdesign.com/?p=3400</guid>
		<description><![CDATA[Summary: Custom WordPress website design and collateral for Recycle-A-Bike (RAB), a Providence-based organization that connects people with refurbished bikes, provides practical bike knowledge, and advocates bicycle use by safer, more confident cyclists. After a decade operating as a volunteer co-op, RAB needed us to develop and maintain a consistent brand as the organization transitioned into [...]]]></description>
			<content:encoded><![CDATA[<p><strong><img class="alignnone size-full wp-image-4626"  src="http://www.deeluxdesign.com/wp-content/uploads/2011/10/rab3.jpeg" alt="" width="590" height="485" />Summary:</strong> Custom WordPress website design and collateral for Recycle-A-Bike (RAB), a Providence-based organization that connects people with refurbished bikes, provides practical bike knowledge, and advocates bicycle use by safer, more confident cyclists. After a decade operating as a volunteer co-op, RAB needed us to develop and maintain a consistent brand as the organization transitioned into an official non-profit. [<a href="http://www.recycleabike.org">Visit site</a>]</p>
<p><span id="more-3400"></span></p>
<h3>One-Page Website</h3>
<p><img class="alignnone size-full wp-image-4662"  src="http://www.deeluxdesign.com/wp-content/uploads/2011/10/splice3.jpg" alt="" width="590" />We chose a one-page layout for RAB&#8217;s website because it is innately simple, easy to use, and all-inclusive. Its goal is two-fold: direct the user to their desired content quickly, while attracting their attention to information they might not have noticed otherwise.</p>
<h3>Pamphlet</h3>
<p><img class="alignnone size-full wp-image-3793"  src="http://www.deeluxdesign.com/wp-content/uploads/2011/09/pamphlet.jpg" alt="" width="590" height="905" />As many of RAB&#8217;s participants have limited to no internet access, we felt it necessary to design a compact pamphlet that basically functions as a pocket-sized version of the website. We utilized an accordion fold to create a finished piece measuring 5.5&#8243; by 4.25.&#8221;</p>
<h3>Cycling Map</h3>
<p><img class="alignnone size-full wp-image-3852"  src="http://www.deeluxdesign.com/wp-content/uploads/2011/08/map2.jpg" alt="" width="600" height="388" />We wanted to put something useful and compelling on the opposite side of the pamphlet to encourage people to hold onto it. Since there is little documentation on how to get to our state&#8217;s scenic bike paths, we made a nifty map highlighting their entrances.</p>
<h3>Happy Client</h3>
<p><img class="alignleft size-full wp-image-4269"  src="http://www.deeluxdesign.com/wp-content/uploads/2011/08/jenna3.jpg" alt="" height="160" />“Deelux completely revamped our organization&#8217;s look and boosted our confidence in the public eye. It started with the redesign of our website; and from that the inspiration for our pamphlets and city map took shape. Their knack for visual quality has become the framework of our story here at Recycle-A-Bike.&#8221;</p>
<p>-<strong>Jenna Johns-Yu</strong> Development Director</p>
]]></content:encoded>
			<wfw:commentRss>http://www.deeluxdesign.com/2011/08/new-direction-for-a-non-profit/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What does your URL say about you?</title>
		<link>http://www.deeluxdesign.com/2011/06/what-does-your-url-say-about-you/</link>
		<comments>http://www.deeluxdesign.com/2011/06/what-does-your-url-say-about-you/#comments</comments>
		<pubDate>Sat, 04 Jun 2011 15:54:28 +0000</pubDate>
		<dc:creator>Andrew</dc:creator>
				<category><![CDATA[Frequently Asked Questions]]></category>

		<guid isPermaLink="false">http://www.deeluxdesign.com/?p=3339</guid>
		<description><![CDATA[Choosing the right URL is a very important decision to make for any new internet venture: not only will it be the first chance you have to present yourself to a new user, but it will also have a deeper effect in shaping your presence on the web both in terms of reputation and your [...]]]></description>
			<content:encoded><![CDATA[<p><img class="size-full wp-image-3340 alignnone"  src="http://www.deeluxdesign.com/wp-content/uploads/2011/06/iceland.png" alt="" width="590" height="300" />Choosing the right URL is a very important decision to make for any new internet venture: not only will it be the first chance you have to present yourself to a new user, but it will also have a deeper effect in shaping your presence on the web both in terms of reputation and your SEO results.  Choosing a URL is compounded by textual challenges, limited inventory, and confusion about extensions.</p>
<p><span id="more-3339"></span></p>
<h3>Textual Challenges</h3>
<p>URLs must be crafted with a limited character set; the most vexing of this is the lack of a method for making a word break (spaces and underscores, among others, are not allowed).  If you are a new business or organization and you expect your website to be a crucial driver of activity, you would consider URL limitations when choosing your business name.  Of course, we&#8217;re not saying that you should name your business widgets123.com, but by the same token you don&#8217;t want to find out too late that www.widgets.com is taken.</p>
<p>Your URL also factors into your SEO results.  <a  href="http://www.deeluxdesign.com/2011/02/what-can-i-do-to-improve-my-seo%e2%80%8e/">We&#8217;ve written before</a> that outsiders don&#8217;t really know how Google&#8217;s search algorithms factor a site&#8217;s page rank, but it is generally agreed that keyword repetition is a key feature of SEO success.  What&#8217;s more, SEO experts suggest that your important keywords should repeat on a variety of levels of your site&#8217;s markup: starting with the URL, down to the page title, the meta description, and your content hierarchy.</p>
<h3>Limited Inventory</h3>
<p>A survey in 2007 found there were over 108 million websites, so anyone who has set out to register a new domain will know that their first choice is usually unavailable.  Fortunately, there&#8217;s a convenient tool to help you find a domain name: <a href="http://www.domai.nr">Domai.nr</a>.   Type a name into the search box and Domai.nr will not only suggest interesting URL options, but it will also check to see if that domain is available.  For example, if you type &#8220;stinky cats&#8221; into Domai.nr&#8217;s search bar, it will not only suggest stinkycats.com (unavailable) but stinkycats.org (available), then more clever combinations of <a href="http://en.wikipedia.org/wiki/Subdomain">subdomains</a>, <a href="http://en.wikipedia.org/wiki/Top-level_domain">top-level domains</a> (TLD), and directories, such as stinky.ca/ts (available) or stin.ky/cats (also available) or st.in/kycats (alas, unavailable).  Creating a URL like this is known as a &#8220;domain hack.&#8221;</p>
<h3>Extensions</h3>
<p>Domai.nr will offer you some interesting suggestions, many of which (such as Domai.nr itself) rely on a <a href="http://en.wikipedia.org/wiki/Cctld">country-code top-level domain</a> (ccTLD) extension for its novelty.  Unlike .com, which is a generic top-level domain, ccTLDs are two-letter extensions that are placed in trust for countries, sovereign states, or dependent territories by the Internet Assigned Numbers Authority (or IANA, the organization that oversees domain names, IP address, and other internet address-type stuff).</p>
<p>Sometimes, you must be a citizen of the country to use a ccTLD, but in most cases this is not so.  Most typically, small countries with desirable ccTLDs can make some extra bank: Tuvalu, a Pacific micronation, sells .tv (as in tnt.tv), while the British Indian Ocean Territory controls the hot .io extension (like <a href="http://drop.io">drop.io</a>, or our client <a href="http://groupvisual.io">groupvisual.io</a>).  You can find a list of <a href="http://en.wikipedia.org/wiki/Cctld#Commercial_and_vanity_use">common ccTLDs</a> courtesy of Wikipedia.</p>
<h3>So, what does your TLD say?</h3>
<p>Top-level domains carry reputations, which can be a product of a variety of factors, such as cost (cheaper TLDs attract cheaper sites), ubiquity, and the quality and type of sites that are choosing that TLD.  I&#8217;ve hit on a few above, but I&#8217;ll go into some more detail:</p>
<h3>The Good</h3>
<ul>
<li><strong>.com:</strong> The most generic and common TLD: the white bread of TLDs.  You can&#8217;t go wrong here, though it may be difficult to find the exact URL you want.</li>
<li><strong>.org:</strong> Are you a non-profit?  This is the domain for you.  Even though you are not strictly required to be a non-profit to use the .org TLD, it does confer some legitimacy to your URL (in fact, those in the know think that Google ranks incoming links from .org and .edu sites higher than others).</li>
<li><strong>.edu:</strong> To get this TLD, you MUST be an accredited post-secondary institution in the United States.  So much for ClownUniversity.edu.</li>
<li><strong>.io:</strong> Recently popularized by sites such as drop.io, this ccTLD will help your URL fit in with the cool kids.</li>
<li><strong>.us:</strong> Only borderline cheesy, maybe just old school…del.icio.us was perhaps the first mainstream domain hack (now that it&#8217;s owned by Yahoo, it goes by the more prosaic <a href="http://delicious.com">delicious.com</a>).</li>
<li><strong>.tv, .fm, and .am:</strong> Generally used by TV stations, FM radio (or internet radio stations, like last.fm), and AM radio stations</li>
<li><strong>.me:</strong> Has a growing popularity for personal websites (the slogan is &#8220;.me is about YOU!&#8221;).  We have the independence of Montenegro in 2006 to thank for this ccTLD.  A notable domain hack was the website for the film Despicable Me: you guessed it, despicable.me.</li>
<li><strong>.is:</strong> Iceland&#8217;s ccTLD is good to pair with a directory (such as <a href="http://jessicahische.is/awesome">jessicahische.is/awesome</a>, or <a href="http://jessicahische.is/adumbass">jessicahische.is/adumbass</a>)</li>
</ul>
<h3>The Bad</h3>
<ul>
<li><strong>.net:</strong> Originally intended for networking organizations and companies, this restriction was never enforced.  Now .net URLs have a vague &#8220;techno&#8221; air about them, but in my mind it feels more like an aging 1990&#8242;s-type of techno&#8230;</li>
</ul>
<h3>The Ugly</h3>
<ul>
<li><strong>.info, and .biz:</strong> This may be a personal bias, but in general .info and .biz tend to be cheap URLs to obtain and maintain, and if you ask me do not present your URL in the best light.</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.deeluxdesign.com/2011/06/what-does-your-url-say-about-you/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Building a Brand from Scratch</title>
		<link>http://www.deeluxdesign.com/2011/05/building-a-brand-from-scratch/</link>
		<comments>http://www.deeluxdesign.com/2011/05/building-a-brand-from-scratch/#comments</comments>
		<pubDate>Tue, 17 May 2011 16:04:39 +0000</pubDate>
		<dc:creator>Chelsea</dc:creator>
				<category><![CDATA[Featured Work]]></category>

		<guid isPermaLink="false">http://www.deeluxdesign.com/?p=3431</guid>
		<description><![CDATA[Summary: Custom WordPress website design, identity, and collateral for the School of Art and Innovation (SAI) in Duvall, Washington. SAI, founded by Dianne Brudnicki in 2001, provides art and design education to at-risk teens that don’t have access to such classes in school, as well as juniors and seniors preparing to apply for college-level study in [...]]]></description>
			<content:encoded><![CDATA[<p><strong><img class="alignnone size-full wp-image-3668"  src="http://www.deeluxdesign.com/wp-content/uploads/2011/09/screenshotLG.jpeg" alt="" width="590" height="418" />Summary:</strong> Custom WordPress website design, identity, and collateral for the School of Art and Innovation (SAI) in Duvall, Washington. SAI, founded by Dianne Brudnicki in 2001, provides art and design education to at-risk teens that don’t have access to such classes in school, as well as juniors and seniors preparing to apply for college-level study in fine arts. We were asked to create the school’s first website and logo. [<a href="http://www.artandinnovate.com">Visit site</a>]</p>
<p><span id="more-3431"></span></p>
<h3>Sketches</h3>
<p><img class="alignnone size-full wp-image-2573"  src="http://www.deeluxdesign.com/wp-content/uploads/2011/03/IMG_6489t3.jpg" alt="sketchbook" width="590" height="393" />Dianne&#8217;s wish list for the logo included clean, modern, and different. As for the feel, she wanted it to convey the school as a sanctuary for creativity. Taking Dianne’s objectives into consideration, we began sketching some ideas.</p>
<h3>Prototypes</h3>
<p><img class="alignnone size-full wp-image-3564"  src="http://www.deeluxdesign.com/wp-content/uploads/2011/09/protos2.jpg" alt="" width="590" />We developed our favorite sketches into conceptual “families,” each of which explored similar characteristics. We used these initial prototypes to narrow down our options, ultimately making the final choice and refining it to everyone&#8217;s satisfaction.</p>
<h3>Business Cards</h3>
<p><img class="size-full wp-image-4527 alignnone"  src="http://www.deeluxdesign.com/wp-content/uploads/2011/05/business-card-quad2.jpg" alt="" width="590" height="339" />We designed collateral (with multiple backgrounds) highlighting the partnership between logo and artwork. The negative space in &#8220;school&#8221; allows the background to peak through, making the students’ creations integral to the implementation of the identity.</p>
<h3>Happy Client</h3>
<p><img class="size-full wp-image-3474 alignleft"  src="http://www.deeluxdesign.com/wp-content/uploads/2011/09/je.jpg" alt="" height="160" />&#8220;Deelux helped us reinvent our office image allowing us to showcase our architectural designs across multiple platforms including a web browser, iPhone and iPad.  Andrew and Chelsea were always quick to create solutions to fit our needs, making the design process flow smoothly. They exceeded our expectations in creating a professional website that we are proud of.&#8221;</p>
<p>-<strong>Ethelind Coblin &#038; Jennifer Judge</strong> Principles, <a href="http://www.ethelindcoblinarchitect.com/">Ethelind Coblin Architect</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.deeluxdesign.com/2011/05/building-a-brand-from-scratch/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Readability Survey of the Top 10 Blogs</title>
		<link>http://www.deeluxdesign.com/2011/03/readability-survey-of-the-top-10-blogs/</link>
		<comments>http://www.deeluxdesign.com/2011/03/readability-survey-of-the-top-10-blogs/#comments</comments>
		<pubDate>Mon, 28 Mar 2011 01:15:18 +0000</pubDate>
		<dc:creator>Andrew</dc:creator>
				<category><![CDATA[Tutorials & Tips]]></category>

		<guid isPermaLink="false">http://www.deeluxdesign.com/?p=2902</guid>
		<description><![CDATA[It seems as though every time we begin designing a new WordPress theme, we quickly have to make typographical and layout decisions that promote good screen readability. These decisions can be very broad and influenced by other layout factors (such as text column width), but quickly work their way down to the minutiae of text [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-full wp-image-2943"  src="http://www.deeluxdesign.com/wp-content/uploads/2011/03/composite.png" alt="" width="590" /><br />
It seems as though every time we begin designing a new WordPress theme, we quickly have to make typographical and layout decisions that promote good screen readability.  These decisions can be very broad and influenced by other layout factors (such as text column width), but quickly work their way down to the minutiae of text color, size, and leading (line height).  All these choices work together to influence the site&#8217;s readability.</p>
<p><span id="more-2902"></span>In the spirit of not needing to reinvent the wheel, I&#8217;ve taken a quick survey of the 10 most popular blogs, according to <a href="http://technorati.com/blogs/top100">Technorati</a>. For each blog, I&#8217;ve noted several CSS properties that work together to influence the site&#8217;s readability. Of course, no one&#8217;s saying these are the most readable, or the most aesthetically pleasing (I&#8217;m looking at you, TMZ), but because they attract a very wide readership they serve as a useful baseline.</p>
<p><strong>1. <a href="http://www.huffingtonpost.com/2011/02/26/libya-protests-tripoli-re_n_828586.html">Huffington Post</a></strong><br />
<img class="alignnone size-full wp-image-2945"  src="http://www.deeluxdesign.com/wp-content/uploads/2011/03/huffpo_031.png" alt="" width="590" height="50" /></p>
<div class="codecolorer-container css dawn" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br />2<br />3<br />4<br />5<br />6<br />7<br />8<br />9<br />10<br />11<br />12<br /></div></td><td><div class="css codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">p <span style="color: #00AA00;">&#123;</span><br />
<span style="color: #000000; font-weight: bold;">width</span><span style="color: #00AA00;">:</span> <span style="color: #933;">570px</span><span style="color: #00AA00;">;</span><br />
<span style="color: #000000; font-weight: bold;">padding-left</span><span style="color: #00AA00;">:</span> <span style="color: #933;">6px</span><span style="color: #00AA00;">;</span><br />
<span style="color: #000000; font-weight: bold;">padding-bottom</span><span style="color: #00AA00;">:</span> <span style="color: #933;">8px</span><span style="color: #00AA00;">;</span><br />
<br />
<span style="color: #000000; font-weight: bold;">font-family</span><span style="color: #00AA00;">:</span> Arial<span style="color: #00AA00;">,</span> ‘Helvetica Neue’<span style="color: #00AA00;">,</span> Helvetica<br />
<span style="color: #000000; font-weight: bold;">font-size</span><span style="color: #00AA00;">:</span> <span style="color: #933;">12px</span><br />
<span style="color: #000000; font-weight: bold;">line-height</span><span style="color: #00AA00;">:</span> <span style="color: #933;">18px</span><span style="color: #00AA00;">;</span><br />
<br />
<span style="color: #000000; font-weight: bold;">color</span><span style="color: #00AA00;">:</span> <span style="color: #cc00cc;">#000</span><span style="color: #00AA00;">;</span><br />
<span style="color: #000000; font-weight: bold;">background-color</span><span style="color: #00AA00;">:</span> <span style="color: #cc00cc;">#FFF</span><span style="color: #00AA00;">;</span><br />
<span style="color: #00AA00;">&#125;</span></div></td></tr></tbody></table></div>
<p><strong>2. <a href="http://techcrunch.com/2011/02/26/fly-or-die-xoom-kno-tablet/">TechCrunch</a></strong><br />
<img class="alignnone size-full wp-image-2946"  src="http://www.deeluxdesign.com/wp-content/uploads/2011/03/techcrunch_03.png" alt="" width="590" height="50" /></p>
<div class="codecolorer-container css dawn" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br />2<br />3<br />4<br />5<br />6<br />7<br />8<br />9<br />10<br />11<br />12<br /></div></td><td><div class="css codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">p <span style="color: #00AA00;">&#123;</span><br />
<span style="color: #000000; font-weight: bold;">width</span><span style="color: #00AA00;">:</span> <span style="color: #933;">635px</span><span style="color: #00AA00;">;</span><br />
<span style="color: #000000; font-weight: bold;">padding-left</span><span style="color: #00AA00;">:</span> <span style="color: #933;">16px</span><span style="color: #00AA00;">;</span><br />
<span style="color: #000000; font-weight: bold;">padding-bottom</span><span style="color: #00AA00;">:</span> <span style="color: #933;">13px</span><span style="color: #00AA00;">;</span><br />
<br />
<span style="color: #000000; font-weight: bold;">font-family</span><span style="color: #00AA00;">:</span> Lucida Grande<span style="color: #00AA00;">,</span> Verdana<span style="color: #00AA00;">,</span> Lucida Sans Regular<span style="color: #00AA00;">,</span> Lucida Sans Unicode<span style="color: #00AA00;">,</span> Arial<span style="color: #00AA00;">;</span><br />
<span style="color: #000000; font-weight: bold;">font-size</span><span style="color: #00AA00;">:</span> <span style="color: #933;">13px</span><span style="color: #00AA00;">;</span><br />
<span style="color: #000000; font-weight: bold;">line-height</span><span style="color: #00AA00;">:</span> <span style="color: #933;">19px</span><span style="color: #00AA00;">;</span><br />
<br />
<span style="color: #000000; font-weight: bold;">color</span><span style="color: #00AA00;">:</span> <span style="color: #cc00cc;">#272727</span><span style="color: #00AA00;">;</span><br />
<span style="color: #000000; font-weight: bold;">background-color</span><span style="color: #00AA00;">:</span> <span style="color: #cc00cc;">#FFF</span><span style="color: #00AA00;">;</span><br />
<span style="color: #00AA00;">&#125;</span></div></td></tr></tbody></table></div>
<p><strong>3. <a href="http://mashable.com/2011/02/26/social-printshop/">Mashable</a></strong><br />
<img class="alignnone size-full wp-image-2947"  src="http://www.deeluxdesign.com/wp-content/uploads/2011/03/mashable_03.png" alt="" width="590" height="50" /></p>
<div class="codecolorer-container css dawn" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br />2<br />3<br />4<br />5<br />6<br />7<br />8<br />9<br />10<br />11<br />12<br /></div></td><td><div class="css codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">p <span style="color: #00AA00;">&#123;</span><br />
<span style="color: #000000; font-weight: bold;">width</span><span style="color: #00AA00;">:</span> <span style="color: #933;">642px</span><span style="color: #00AA00;">;</span><br />
<span style="color: #000000; font-weight: bold;">padding-left</span><span style="color: #00AA00;">:</span> elastic<span style="color: #00AA00;">;</span><br />
<span style="color: #000000; font-weight: bold;">padding-bottom</span><span style="color: #00AA00;">:</span> <span style="color: #933;">13px</span><span style="color: #00AA00;">;</span><br />
<br />
<span style="color: #000000; font-weight: bold;">font-family</span><span style="color: #00AA00;">:</span> Arial<span style="color: #00AA00;">,</span> Helvetica<span style="color: #00AA00;">,</span> <span style="color: #993333;">sans-serif</span><span style="color: #00AA00;">;</span><br />
<span style="color: #000000; font-weight: bold;">font-size</span><span style="color: #00AA00;">:</span> <span style="color: #933;">13px</span><span style="color: #00AA00;">;</span><br />
<span style="color: #000000; font-weight: bold;">line-height</span><span style="color: #00AA00;">:</span> <span style="color: #933;">21px</span><span style="color: #00AA00;">;</span><br />
<br />
<span style="color: #000000; font-weight: bold;">color</span><span style="color: #00AA00;">:</span> <span style="color: #cc00cc;">#474747</span><span style="color: #00AA00;">;</span><br />
<span style="color: #000000; font-weight: bold;">background-color</span><span style="color: #00AA00;">:</span> <span style="color: #cc00cc;">#FFF</span><span style="color: #00AA00;">;</span><br />
<span style="color: #00AA00;">&#125;</span></div></td></tr></tbody></table></div>
<p><strong>4. <a href="http://www.engadget.com/2011/03/23/voice-controlled-japanese-robot-assists-with-eating-makes-veggi/">Engadget</a></strong><br />
<img class="alignnone size-full wp-image-2948"  src="http://www.deeluxdesign.com/wp-content/uploads/2011/03/engadget_03.png" alt="" width="590" height="50" /></p>
<div class="codecolorer-container css dawn" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br />2<br />3<br />4<br />5<br />6<br />7<br />8<br />9<br />10<br />11<br />12<br /></div></td><td><div class="css codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">p <span style="color: #00AA00;">&#123;</span><br />
<span style="color: #000000; font-weight: bold;">width</span><span style="color: #00AA00;">:</span> <span style="color: #933;">650px</span><span style="color: #00AA00;">;</span><br />
<span style="color: #000000; font-weight: bold;">padding-left</span><span style="color: #00AA00;">:</span> elastic<span style="color: #00AA00;">;</span><br />
<span style="color: #000000; font-weight: bold;">padding-bottom</span><span style="color: #00AA00;">:</span> <span style="color: #933;">19px</span><span style="color: #00AA00;">;</span><br />
<br />
<span style="color: #000000; font-weight: bold;">font-family</span><span style="color: #00AA00;">:</span> georgia<span style="color: #00AA00;">;</span><br />
<span style="color: #000000; font-weight: bold;">font-size</span><span style="color: #00AA00;">:</span> <span style="color: #933;">15px</span><span style="color: #00AA00;">;</span><br />
<span style="color: #000000; font-weight: bold;">line-height</span><span style="color: #00AA00;">:</span> <span style="color: #933;">22px</span><span style="color: #00AA00;">;</span><br />
<br />
<span style="color: #000000; font-weight: bold;">color</span><span style="color: #00AA00;">:</span> <span style="color: #cc00cc;">#444</span><span style="color: #00AA00;">;</span><br />
<span style="color: #000000; font-weight: bold;">background-color</span><span style="color: #00AA00;">:</span> <span style="color: #cc00cc;">#FFF</span><span style="color: #00AA00;">;</span><br />
<span style="color: #00AA00;">&#125;</span></div></td></tr></tbody></table></div>
<p><strong>5. <a href="http://www.boingboing.net/2011/02/26/alan-dean-foster-pre-2.html">BoingBoing</a></strong><br />
<img class="alignnone size-full wp-image-2949"  src="http://www.deeluxdesign.com/wp-content/uploads/2011/03/boingboing_03.png" alt="" width="590" height="50" /></p>
<div class="codecolorer-container css dawn" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br />2<br />3<br />4<br />5<br />6<br />7<br />8<br />9<br />10<br />11<br />12<br /></div></td><td><div class="css codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">p <span style="color: #00AA00;">&#123;</span><br />
<span style="color: #000000; font-weight: bold;">width</span><span style="color: #00AA00;">:</span> <span style="color: #933;">600px</span><span style="color: #00AA00;">;</span><br />
<span style="color: #000000; font-weight: bold;">padding-left</span><span style="color: #00AA00;">:</span> elastic<span style="color: #00AA00;">;</span><br />
<span style="color: #000000; font-weight: bold;">padding-bottom</span><span style="color: #00AA00;">:</span> <span style="color: #933;">11px</span><span style="color: #00AA00;">;</span><br />
<br />
<span style="color: #000000; font-weight: bold;">font-family</span><span style="color: #00AA00;">:</span> <span style="color: #ff0000;">&quot;Helvetica Neue&quot;</span><span style="color: #00AA00;">,</span> Helvetica<span style="color: #00AA00;">,</span> <span style="color: #ff0000;">&quot;Trebuchet MS&quot;</span><span style="color: #00AA00;">,</span> <span style="color: #993333;">sans-serif</span><span style="color: #00AA00;">;</span><br />
<span style="color: #000000; font-weight: bold;">font-size</span><span style="color: #00AA00;">:</span> <span style="color: #933;">15px</span><span style="color: #00AA00;">;</span><br />
<span style="color: #000000; font-weight: bold;">line-height</span><span style="color: #00AA00;">:</span> <span style="color: #933;">22px</span><span style="color: #00AA00;">;</span><br />
<br />
<span style="color: #000000; font-weight: bold;">color</span><span style="color: #00AA00;">:</span> <span style="color: #cc00cc;">#000</span><span style="color: #00AA00;">;</span><br />
<span style="color: #000000; font-weight: bold;">background-color</span><span style="color: #00AA00;">:</span> <span style="color: #cc00cc;">#FFF</span><span style="color: #00AA00;">;</span><br />
<span style="color: #00AA00;">&#125;</span></div></td></tr></tbody></table></div>
<p><strong>6. <a href="http://www.tmz.com/2011/02/25/charlie-sheen-two-and-a-half-men-chuck-lorre-radio-interview/">TMZ</a></strong><br />
<img class="alignnone size-full wp-image-2950"  src="http://www.deeluxdesign.com/wp-content/uploads/2011/03/tmz_03.png" alt="" width="590" height="50" /></p>
<div class="codecolorer-container css dawn" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br />2<br />3<br />4<br />5<br />6<br />7<br />8<br />9<br />10<br />11<br />12<br /></div></td><td><div class="css codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">p <span style="color: #00AA00;">&#123;</span><br />
<span style="color: #000000; font-weight: bold;">width</span><span style="color: #00AA00;">:</span> <span style="color: #933;">566px</span><span style="color: #00AA00;">;</span><br />
<span style="color: #000000; font-weight: bold;">padding-left</span><span style="color: #00AA00;">:</span> <span style="color: #933;">20px</span><span style="color: #00AA00;">;</span><br />
<span style="color: #000000; font-weight: bold;">padding-bottom</span><span style="color: #00AA00;">:</span> <span style="color: #933;">16px</span><span style="color: #00AA00;">;</span><br />
<br />
<span style="color: #000000; font-weight: bold;">font-family</span><span style="color: #00AA00;">:</span> Arial<span style="color: #00AA00;">,</span> ‘Helvetica Neue’<span style="color: #00AA00;">,</span> Helvetica<br />
<span style="color: #000000; font-weight: bold;">font-size</span><span style="color: #00AA00;">:</span> <span style="color: #933;">12px</span><span style="color: #00AA00;">;</span><br />
<span style="color: #000000; font-weight: bold;">line-height</span><span style="color: #00AA00;">:</span> <span style="color: #933;">16px</span><span style="color: #00AA00;">;</span><br />
<br />
<span style="color: #000000; font-weight: bold;">color</span><span style="color: #00AA00;">:</span> <span style="color: #cc00cc;">#000</span><span style="color: #00AA00;">;</span><br />
<span style="color: #000000; font-weight: bold;">background-color</span><span style="color: #00AA00;">:</span> <span style="color: #cc00cc;">#FFF</span><span style="color: #00AA00;">;</span><br />
<span style="color: #00AA00;">&#125;</span></div></td></tr></tbody></table></div>
<p><strong>7. <a href="http://www.thedailybeast.com/blogs-and-stories/2011-02-25/the-oscars-are-james-franco-and-anne-hathaway-making-them-cool/?cid=hp:beastoriginalsR1">The Daily Beast</a></strong><br />
<img class="alignnone size-full wp-image-2951"  src="http://www.deeluxdesign.com/wp-content/uploads/2011/03/sexybeast_03.png" alt="" width="590" height="50" /></p>
<div class="codecolorer-container css dawn" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br />2<br />3<br />4<br />5<br />6<br />7<br />8<br />9<br />10<br />11<br />12<br /></div></td><td><div class="css codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">p <span style="color: #00AA00;">&#123;</span><br />
<span style="color: #000000; font-weight: bold;">width</span><span style="color: #00AA00;">:</span> <span style="color: #933;">500px</span><span style="color: #00AA00;">;</span><br />
<span style="color: #000000; font-weight: bold;">padding-left</span><span style="color: #00AA00;">:</span> <span style="color: #933;">33px</span><span style="color: #00AA00;">;</span><br />
<span style="color: #000000; font-weight: bold;">padding-bottom</span><span style="color: #00AA00;">:</span> <span style="color: #933;">15px</span><span style="color: #00AA00;">;</span><br />
<br />
<span style="color: #000000; font-weight: bold;">font-family</span><span style="color: #00AA00;">:</span> Arial<span style="color: #00AA00;">,</span> Helvetica<span style="color: #00AA00;">,</span> <span style="color: #993333;">sans-serif</span><br />
<span style="color: #000000; font-weight: bold;">font-size</span><span style="color: #00AA00;">:</span> <span style="color: #933;">13px</span><span style="color: #00AA00;">;</span><br />
<span style="color: #000000; font-weight: bold;">line-height</span><span style="color: #00AA00;">:</span> <span style="color: #933;">18px</span><span style="color: #00AA00;">;</span><br />
<br />
<span style="color: #000000; font-weight: bold;">color</span><span style="color: #00AA00;">:</span> <span style="color: #cc00cc;">#000</span><span style="color: #00AA00;">;</span><br />
<span style="color: #000000; font-weight: bold;">background-color</span><span style="color: #00AA00;">:</span> <span style="color: #cc00cc;">#FFF</span><span style="color: #00AA00;">;</span><br />
<span style="color: #00AA00;">&#125;</span></div></td></tr></tbody></table></div>
<p><strong>8. <a href="http://thinkprogress.org/2011/02/26/report-top-10-disastrous-policies-from-the-wisconsin-gop-you-havent-heard-about/">ThinkProgress</a></strong><br />
<img class="alignnone size-full wp-image-2952"  src="http://www.deeluxdesign.com/wp-content/uploads/2011/03/thinkprogress_03.png" alt="" width="590" height="50" /></p>
<div class="codecolorer-container css dawn" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br />2<br />3<br />4<br />5<br />6<br />7<br />8<br />9<br />10<br />11<br />12<br /></div></td><td><div class="css codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">p <span style="color: #00AA00;">&#123;</span><br />
<span style="color: #000000; font-weight: bold;">width</span><span style="color: #00AA00;">:</span> <span style="color: #933;">550px</span><span style="color: #00AA00;">;</span><br />
<span style="color: #000000; font-weight: bold;">padding-left</span><span style="color: #00AA00;">:</span> <span style="color: #933;">32px</span><span style="color: #00AA00;">;</span><br />
<span style="color: #000000; font-weight: bold;">padding-bottom</span><span style="color: #00AA00;">:</span> <span style="color: #933;">12px</span><span style="color: #00AA00;">;</span><br />
<br />
<span style="color: #000000; font-weight: bold;">font-family</span><span style="color: #00AA00;">:</span> <span style="color: #ff0000;">'Lucidia Grande’, Verdana, sans-serif;<br />
font-size: 12px;<br />
line-height: 18px;<br />
<br />
color: #000;<br />
background-color: #FFF;<br />
}</span></div></td></tr></tbody></table></div>
<p><strong>9. <a href="http://hotair.com/archives/2011/02/26/one-reason-why-wisconsin-needed-union-reform-captive-benefits/">Hot Air</a></strong><br />
<img class="alignnone size-full wp-image-2953"  src="http://www.deeluxdesign.com/wp-content/uploads/2011/03/hotair_03.png" alt="" width="590" height="50" /></p>
<div class="codecolorer-container css dawn" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br />2<br />3<br />4<br />5<br />6<br />7<br />8<br />9<br />10<br />11<br />12<br /></div></td><td><div class="css codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">p <span style="color: #00AA00;">&#123;</span><br />
<span style="color: #000000; font-weight: bold;">width</span><span style="color: #00AA00;">:</span> <span style="color: #933;">520px</span><span style="color: #00AA00;">;</span><br />
<span style="color: #000000; font-weight: bold;">padding-left</span><span style="color: #00AA00;">:</span> elastic<span style="color: #00AA00;">;</span><br />
<span style="color: #000000; font-weight: bold;">padding-bottom</span><span style="color: #00AA00;">:</span> <span style="color: #933;">20px</span><span style="color: #00AA00;">;</span><br />
<br />
<span style="color: #000000; font-weight: bold;">font-family</span><span style="color: #00AA00;">:</span> georgia<span style="color: #00AA00;">,</span> ‘times new roman’<span style="color: #00AA00;">,</span> <span style="color: #993333;">serif</span><br />
<span style="color: #000000; font-weight: bold;">font-size</span><span style="color: #00AA00;">:</span> <span style="color: #933;">13px</span><span style="color: #00AA00;">;</span><br />
<span style="color: #000000; font-weight: bold;">line-height</span><span style="color: #00AA00;">:</span> <span style="color: #933;">18px</span><span style="color: #00AA00;">;</span><br />
<br />
<span style="color: #000000; font-weight: bold;">color</span><span style="color: #00AA00;">:</span> <span style="color: #cc00cc;">#000</span><span style="color: #00AA00;">;</span><br />
<span style="color: #000000; font-weight: bold;">background-color</span><span style="color: #00AA00;">:</span> <span style="color: #cc00cc;">#FFF</span><span style="color: #00AA00;">;</span><br />
<span style="color: #00AA00;">&#125;</span></div></td></tr></tbody></table></div>
<p><strong>10. <a href="http://gizmodo.com/#!5770645/next-weeks-apple-event-what-to-expect">Gizmodo</a></strong><br />
<img class="alignnone size-full wp-image-2954"  src="http://www.deeluxdesign.com/wp-content/uploads/2011/03/gizmodo_03.png" alt="" width="590" height="50" /></p>
<div class="codecolorer-container css dawn" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br />2<br />3<br />4<br />5<br />6<br />7<br />8<br />9<br />10<br />11<br />12<br /></div></td><td><div class="css codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">p <span style="color: #00AA00;">&#123;</span><br />
<span style="color: #000000; font-weight: bold;">width</span><span style="color: #00AA00;">:</span> <span style="color: #933;">620px</span><span style="color: #00AA00;">;</span><br />
<span style="color: #000000; font-weight: bold;">padding-left</span><span style="color: #00AA00;">:</span> <span style="color: #933;">10px</span><span style="color: #00AA00;">;</span><br />
<span style="color: #000000; font-weight: bold;">padding-bottom</span><span style="color: #00AA00;">:</span> <span style="color: #933;">13px</span><span style="color: #00AA00;">;</span><br />
<br />
<span style="color: #000000; font-weight: bold;">font-family</span><span style="color: #00AA00;">:</span> Georgia<span style="color: #00AA00;">,</span> Times<span style="color: #00AA00;">,</span> <span style="color: #ff0000;">'Liberation Serif'</span><span style="color: #00AA00;">,</span> <span style="color: #993333;">serif</span><span style="color: #00AA00;">;</span><br />
<span style="color: #000000; font-weight: bold;">font-size</span><span style="color: #00AA00;">:</span> <span style="color: #933;">15px</span><span style="color: #00AA00;">;</span><br />
<span style="color: #000000; font-weight: bold;">line-height</span><span style="color: #00AA00;">:</span> <span style="color: #933;">22px</span><span style="color: #00AA00;">;</span><br />
<br />
<span style="color: #000000; font-weight: bold;">color</span><span style="color: #00AA00;">:</span> <span style="color: #cc00cc;">#333</span><span style="color: #00AA00;">;</span><br />
<span style="color: #000000; font-weight: bold;">background-color</span><span style="color: #00AA00;">:</span> <span style="color: #cc00cc;">#FFF</span><span style="color: #00AA00;">;</span><br />
<span style="color: #00AA00;">&#125;</span></div></td></tr></tbody></table></div>
<p><strong>Bonus: <a href="http://www.deeluxdesign.com/blog/">Deelux</a></strong><br />
<img class="alignnone size-full wp-image-2986"  src="http://www.deeluxdesign.com/wp-content/uploads/2011/03/Screen-shot-2011-03-29-at-11.42.42-AM.png" alt="" width="590" height="50" /></p>
<div class="codecolorer-container css dawn" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br />2<br />3<br />4<br />5<br />6<br />7<br />8<br />9<br />10<br />11<br />12<br /></div></td><td><div class="css codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">p <span style="color: #00AA00;">&#123;</span><br />
<span style="color: #000000; font-weight: bold;">width</span><span style="color: #00AA00;">:</span> <span style="color: #933;">600px</span><span style="color: #00AA00;">;</span><br />
<span style="color: #000000; font-weight: bold;">padding-left</span><span style="color: #00AA00;">:</span> elastic<span style="color: #00AA00;">;</span><br />
<span style="color: #000000; font-weight: bold;">padding-bottom</span><span style="color: #00AA00;">:</span> <span style="color: #933;">25px</span><span style="color: #00AA00;">;</span><br />
<br />
<span style="color: #000000; font-weight: bold;">font-family</span><span style="color: #00AA00;">:</span> <span style="color: #ff0000;">'droid sans'</span><span style="color: #00AA00;">,</span> <span style="color: #ff0000;">'helvetica neue'</span><span style="color: #00AA00;">,</span> helvetica<span style="color: #00AA00;">,</span> arial<span style="color: #00AA00;">,</span> <span style="color: #993333;">sans-serif</span><span style="color: #00AA00;">;</span><br />
<span style="color: #000000; font-weight: bold;">font-size</span><span style="color: #00AA00;">:</span> <span style="color: #933;">14px</span><span style="color: #00AA00;">;</span><br />
<span style="color: #000000; font-weight: bold;">line-height</span><span style="color: #00AA00;">:</span> <span style="color: #933;">25px</span><span style="color: #00AA00;">;</span><br />
<br />
<span style="color: #000000; font-weight: bold;">color</span><span style="color: #00AA00;">:</span> <span style="color: #cc00cc;">#333</span><span style="color: #00AA00;">;</span><br />
<span style="color: #000000; font-weight: bold;">background-color</span><span style="color: #00AA00;">:</span> <span style="color: #cc00cc;">#FFF</span><span style="color: #00AA00;">;</span><br />
<span style="color: #00AA00;">&#125;</span></div></td></tr></tbody></table></div>
<h3>Conclusions</h3>
<p>Three measures interest me the most, because together I think they make the most impact on readability: width, font-size, and line-height. On average, the column <code class="codecolorer text dawn"><span class="text">width</span></code> among these blogs is 585.3 px (there is no such thing as a fraction of a pixel, but we&#8217;re talking averages, so deal with it). The average <code class="codecolorer text dawn"><span class="text">font-size</span></code> is 13 px and the <code class="codecolorer text dawn"><span class="text">line-height</span></code> is 19.1 px.</p>
<p>These three factors don&#8217;t individually create a readable layout: they function as parts of a whole. With that in mind, I&#8217;m not sure that an average is the best way to encapsulate the data set. What about median (the middle value of the data set)? For <code class="codecolorer text dawn"><span class="text">width</span></code> the median is 585 px, for <code class="codecolorer text dawn"><span class="text">font-size</span></code> it&#8217;s 13 px, and for <code class="codecolorer text dawn"><span class="text">line-height</span></code> it&#8217;s 18.5 px. The <code class="codecolorer text dawn"><span class="text">width</span></code> is in line with what I expected, however I&#8217;m surprised that the average and median <code class="codecolorer text dawn"><span class="text">font-sizes</span></code> are so small (I expected at least 14 px), especially with only about 5 px of leading. Perhaps what&#8217;s needed is some kind of algorithm that compresses all the CSS properties influencing readability into a concise &#8220;Readability Index&#8230;&#8221;</p>
<p>I&#8217;m also surprised that a wide majority of the fonts are sans-serif (7 of 10). Half of the four tech blogs (the most-represented genre) are set in Georgia, which is generally agreed to be a very readable (but not necessarily &#8220;high-tech&#8221;) font.</p>
<p>I also find it strange that, with the exception of BoingBoing, every blog that includes Arial in its <code class="codecolorer text dawn"><span class="text">font-family</span></code> stack calls it <em>before</em> Helvetica! Arguably, Helvetica is a better typeface than Arial, and since Helvetica comes installed on all Apple computers (as does Arial), it should be called first in the stack. As it is now, Mac OS readers of the Huffington Post will never see the site in Helvetica (althogh iOS users will). Is this because the developers of these sites use a PC, or at least have a PC-centric approach to their markup?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.deeluxdesign.com/2011/03/readability-survey-of-the-top-10-blogs/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>How does your design process work?</title>
		<link>http://www.deeluxdesign.com/2011/03/how-does-your-design-process-work/</link>
		<comments>http://www.deeluxdesign.com/2011/03/how-does-your-design-process-work/#comments</comments>
		<pubDate>Thu, 24 Mar 2011 00:48:22 +0000</pubDate>
		<dc:creator>Chelsea</dc:creator>
				<category><![CDATA[Frequently Asked Questions]]></category>

		<guid isPermaLink="false">http://www.deeluxdesign.com/?p=2842</guid>
		<description><![CDATA[We like to take the time to get to know you and your project because it&#8217;s as important to define the challenge as it is to design the solution. Below we&#8217;ve outlined the phases of our design process so you have a clear idea of where we&#8217;re going and how we&#8217;re getting there. For a more detailed [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-full wp-image-2863"  src="http://www.deeluxdesign.com/wp-content/uploads/2011/03/lightbulb.png" alt="" width="590" height="300" /><br />
We like to take the time to get to know you and your project because it&#8217;s as important to define the challenge as it is to design the solution. Below we&#8217;ve outlined the phases of our design process so you have a clear idea of where we&#8217;re going and how we&#8217;re getting there. For a more detailed look at how we work, read a <a  href="http://www.deeluxdesign.com/2011/03/building-a-brand-from-scratch/">logo design case study</a> from our portfolio.</p>
<p><span id="more-2842"></span></p>
<h3>1. Consultation</h3>
<p>We meet with you in person, over the phone, or through video chat to discuss the scope and design goals of your project. Over the course of our conversation, we get a feel for you, your organization, and its values.</p>
<h3>2. Proposal</h3>
<p>We condense what we learned in our consultation into a proposal, which is a comprehensive document outlining project goals, possible design solutions, and specific steps to achieve success. We also address fees, deliverables, and timeline.</p>
<h3>3. Contract</h3>
<p>After the terms of the proposal are approved, we attach our standard contract creating a complete agreement for your review. Work begins as soon as we receive a signed copy and deposit. View a <a href="http://www.deeluxdesign.com/wp-content/uploads/2011/03/Deelux_Sample_Contact.pdf">sample contract</a>.</p>
<h3>4. Research</h3>
<p>It&#8217;s helpful to explore &#8220;the field&#8221; before we begin work on your project in earnest. We gather relevant examples to establish standard practices, and then we decide how much or how little you want you want to stick to those standards.</p>
<h3>5. Brainstorming &amp; Sketching</h3>
<p>We put pencil to paper (or marker to white board) to quickly tease out potential design directions.  Don&#8217;t expect us to share all of these with you though; some are so dreadful we&#8217;d never let them see the light of day!</p>
<h3>6. Prototyping</h3>
<p>Prototyping is a fancy way of saying &#8220;testing an idea or concept.&#8221; For a print project, it means we use software such as Adobe Illustrator to polish our sketches. If we&#8217;re designing a website, it means we create usable, clickable mockups.</p>
<h3>7. Presentation &amp; Refinement</h3>
<p>We present a selection of prototypes for your review, and together we decide what&#8217;s working and what&#8217;s not. Eventually, we nail down a frontrunner that we continue to refine until everyone is happy with the final product.</p>
<h3>8. Delivery</h3>
<p>Time to celebrate! If there are any bugs or problems after we&#8217;ve completed our work, we&#8217;ll take care of them. On the other hand, if you want to expand the scope of the original project, we will gladly quote you a new price.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.deeluxdesign.com/2011/03/how-does-your-design-process-work/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What can I do to improve my SEO‎?</title>
		<link>http://www.deeluxdesign.com/2011/02/what-can-i-do-to-improve-my-seo%e2%80%8e/</link>
		<comments>http://www.deeluxdesign.com/2011/02/what-can-i-do-to-improve-my-seo%e2%80%8e/#comments</comments>
		<pubDate>Wed, 23 Feb 2011 21:31:50 +0000</pubDate>
		<dc:creator>Andrew</dc:creator>
				<category><![CDATA[Frequently Asked Questions]]></category>

		<guid isPermaLink="false">http://www.deeluxdesign.com/?p=2329</guid>
		<description><![CDATA[In some people&#8217;s minds Search Engine Optimization (SEO) is an art darker than witchcraft; to others, it&#8217;s something incredibly proscriptive: do A, B, and C, and you&#8217;ll be number one in Google searches. Fortunately, SEO is not voodoo (or my pantry would be filled with chicken necks and newts instead of olive oil and cereal), [...]]]></description>
			<content:encoded><![CDATA[<p><img class="size-full wp-image-2382 alignnone"  src="http://www.deeluxdesign.com/wp-content/uploads/2011/02/seo.png" alt="seo" width="590" height="300" /><br />
In some people&#8217;s minds Search Engine Optimization (SEO) is  an art darker than witchcraft; to others, it&#8217;s something incredibly proscriptive: do A, B, and C, and you&#8217;ll be number one in Google searches.  Fortunately, SEO is not voodoo (or my pantry would be filled with chicken necks and newts instead of olive oil and cereal), but unfortunately it is not as simple as checking off boxes on a to-do list.  It&#8217;s somewhere in between, and far more interesting.</p>
<p><span id="more-2329"></span>Google doesn&#8217;t reveal the exact parameters collected and processed by its famous algorithm and its web-crawling &#8220;robots&#8221; (the automated programs that access websites to catalog them for Google); to do so would tip its multibillion dollar hand.  SEO experts do have a few sources to go on.  For instance, Google publishes a <a href="http://www.google.com/support/webmasters/bin/answer.py?answer=35769">guide</a> to SEO for webmasters.  (The words of Google engineers are analyzed like the congressional testimonies of <a href="http://www.amazon.com/Poetry-Alan-Greenspan-Painstakingly-Nevertheless/dp/0595096441/ref=sr_1_1?ie=UTF8&amp;s=books&amp;qid=1298495025&amp;sr=8-1">Alan Greenspan</a>.)  Others have attempted to <a href="http://www.vaughns-1-pagers.com/internet/google-ranking-factors.htm">reverse engineer</a> Google&#8217;s algorithm themselves.  That aside, Google engineer <a href="http://www.mattcutts.com/blog/">Matt Cutts</a> told the New York Times for a recent <a href="http://www.nytimes.com/2011/02/11/business/media/11search.html?_r=1&amp;scp=2&amp;sq=seo&amp;st=cse">article</a> about The Huffington Post, “One piece of advice I give to S.E.O. masters is, don’t chase after Google’s algorithm, chase after your best interpretation of what users want, because that’s what Google’s chasing after.”</p>
<p>So then, SEO is pretty simple: make a site that&#8217;s great for people, and Google will reward you.  That sounds awfully zen, and I think the truth is a little more complicated.  For instance, Google says they&#8217;re trying to hone their algorithm to think like a person, but in reality, the algorithm is thinking how Google engineers <em>think</em> people think.</p>
<p>What does that mean for you?  Though I don&#8217;t pretend to be an SEO expert, I&#8217;ve read through some SEO advice and source material, and I think there are some fundamental tenants:</p>
<ol>
<li><strong>Content</strong>. Your content should be well-structured.  From the very beginning, we ask our clients to create content that is hierarchical and well-organized.  It&#8217;s a good idea to start from an outline and work from there.</li>
<li><strong>Keywords</strong>.  When developing content, make a list of keywords that fit your organization and/or content.  Use these keywords on all levels of your structural outline.</li>
<li><strong>Links</strong>.  Every page of your site should have a link out.  It&#8217;s not necessarily true that the more links on your page, the better (there&#8217;s a risk that Google will think your page is spam and lower its ranking).  Also, and perhaps more crucially, you need to get other sites to link to you, especially high-quality sites.  Google puts special weight on .edu and .org sites that link to yours.</li>
<li><strong>No dirty tricks</strong>.  Stay away from so-called &#8220;black hat&#8221; techniques…like loading your page with irrelevant keywords, creating multiple sites with duplicate content, using affiliate programs to populate links, and so forth.</li>
</ol>
<p>If you&#8217;re interested in learning about SEO in greater detail, the team at <a href="http://www.seomoz.org/">SEOmoz</a> has put together a (long) <a href="http://guides.seomoz.org/beginners-guide-to-search-engine-optimization">Beginner&#8217;s Guide to SEO</a>.  I haven&#8217;t read the whole thing, but at least it has some nice illustrations!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.deeluxdesign.com/2011/02/what-can-i-do-to-improve-my-seo%e2%80%8e/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A Social Media Success Story</title>
		<link>http://www.deeluxdesign.com/2011/02/a-social-media-success-story/</link>
		<comments>http://www.deeluxdesign.com/2011/02/a-social-media-success-story/#comments</comments>
		<pubDate>Mon, 14 Feb 2011 15:23:44 +0000</pubDate>
		<dc:creator>Chelsea</dc:creator>
				<category><![CDATA[Featured Work]]></category>

		<guid isPermaLink="false">http://www.deeluxdesign.com/?p=3442</guid>
		<description><![CDATA[Summary: Handcrafted HTML/CSS website design, identity, and social media campaign for &#8220;LightHearted,&#8221; Freecell’s winning entry in the Times Square Valentine competition. The installation consisted of elliptical loops covered in lightweight fabric that transformed into a heart when lifted. We were tasked with creating an identity and website that would entice and facilitate massive participation for [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-full wp-image-3516"  src="http://www.deeluxdesign.com/wp-content/uploads/2011/09/lh-up2.jpg" alt="" width="590" height="458" /><br />
<strong>Summary:</strong> Handcrafted HTML/CSS website design, identity, and social media campaign for &#8220;LightHearted,&#8221; Freecell’s winning entry in the Times Square Valentine competition. The installation consisted of elliptical loops covered in lightweight fabric that transformed into a heart when lifted. We were tasked with creating an identity and website that would entice and facilitate massive participation for the event. [<a href="http://deeluxdesign.com/archive/lighthearted/">Visit archive</a>]</p>
<p><span id="more-3442"></span></p>
<h3>Print Campaign</h3>
<p><img class="alignnone size-full wp-image-3444"  src="http://www.deeluxdesign.com/wp-content/uploads/2011/09/LH_poster_final.jpg" alt="" width="590" />Through signage we encouraged visitors to post their own photos of the event to Flickr. They were so compelling that we created a slideshow on the website showcasing great moments at the heart, including 4 proposals, 6 birthdays, and 1 Quinceañera!</p>
<h3>Interactive Site</h3>
<p><img class="alignnone size-full wp-image-4533"  src="http://www.deeluxdesign.com/wp-content/uploads/2011/02/down-rev1.jpg" alt="" width="590" height="210" />To complement the communal and fun-loving spirit of the heart, we designed a website based around a love letter floating over Times Square. With the click of a button, the letter can be hidden to view a full-screen slideshow.</p>
<h3>Social Engagement</h3>
<p><img class="alignnone size-full wp-image-2315"  src="http://www.deeluxdesign.com/wp-content/uploads/2011/02/171712_146904068704010_136363139758103_286090_3674990_o.jpg" alt="" width="590" />An intense promotional campaign was required to encourage visitors and volunteer participation, so we utilized Twitter, Facebook, and Flickr to build an enthusiastic following resulting in over 3,000 visitors in two weeks. [Wedding photo by <a href="http://www.weissweddings.com/">Mark Weiss</a>]</p>
<h3>Happy Client</h3>
<p><img class="alignleft size-full wp-image-4451"  src="http://www.deeluxdesign.com/wp-content/uploads/2011/02/john2.jpg" alt="" width="140" height="160" />“Great design, which we knew we would get from Andrew and Chelsea, is the easy part of any project. The hard part is delivering content on time and on budget. We had web, social media, and print components that had to be considered, crafted, and deployed, and Deelux proved itself at every turn.&#8221;</p>
<p>-<strong>John Hartmann</strong> Partner at <a href="http://www.frcll.com">Freecell</p>
]]></content:encoded>
			<wfw:commentRss>http://www.deeluxdesign.com/2011/02/a-social-media-success-story/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
