<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>Dial D For Design</title>
	
	<link>http://dialdfordesign.com</link>
	<description>for web designers, creatives, UX lovers and accessibility enthusiasts.</description>
	<lastBuildDate>Sun, 14 Jun 2009 20:28:43 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/dialdfordesign" /><feedburner:info uri="dialdfordesign" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item>
		<title>Page Zoom, Elastic Layouts &amp; Em (Erratic Moustaches)</title>
		<link>http://feedproxy.google.com/~r/dialdfordesign/~3/6JLRdkNn5xc/</link>
		<comments>http://dialdfordesign.com/?p=185#comments</comments>
		<pubDate>Sun, 14 Jun 2009 20:10:21 +0000</pubDate>
		<dc:creator>Steve</dc:creator>
				<category><![CDATA[Applied Design]]></category>
		<category><![CDATA[Accesibility]]></category>
		<category><![CDATA[coding]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[elastic]]></category>
		<category><![CDATA[em]]></category>
		<category><![CDATA[layout]]></category>
		<category><![CDATA[layouts]]></category>
		<category><![CDATA[liquid]]></category>
		<category><![CDATA[usability]]></category>
		<category><![CDATA[web]]></category>
		<category><![CDATA[zoom]]></category>

		<guid isPermaLink="false">http://dialdfordesign.com/?p=185</guid>
		<description><![CDATA[Tim says &#8220;Skip to the End&#8221;
1 in 4 people have some sort of vision impairment that makes reading on the web more difficult.[1]
Elastic layouts and coding using em
With the default text size on most major browsers set at 16px many people like to make their text larger to make it easier to read and I [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: right;"><a href="#skiptotheend">Tim says &#8220;Skip to the End&#8221;</a></p>
<blockquote style="text-align: left;"><p>1 in 4 people have some sort of vision impairment that makes reading on the web more difficult.[1]</p></blockquote>
<h2 style="text-align: center;">Elastic layouts and coding using em</h2>
<p style="text-align: left;">With the default text size on most major browsers set at 16px many people like to make their text larger to make it easier to read and I believe the number is set to go up as monitors get larger. Plus I&#8217;m sure that many people don&#8217;t realise they can increase the text size of a web page by holding ctrl + or selecting zoom via a menu.</p>
<p style="text-align: left;"><span id="more-185"></span></p>
<p style="text-align: left;">To cater for users increasing the text size in their browsers web designers and developers can set the size of the elements in their designs using values of em instead of % and px.</p>
<blockquote style="text-align: left;"><p>&#8220;An em is a unit of measurement in the field of typography, equal to the point size of the current font. This unit is not defined in terms of any specific typeface.&#8221;[2]</p></blockquote>
<p style="text-align: left;">Em is said to equal the width of the character M in which ever type face you are using as this is usually the widest character. However with the ever varying typefaces entering the typography world this isn&#8217;t always the case.</p>
<h2 style="text-align: center;">Em vs px vs %</h2>
<p style="text-align: left;">The problem with coding in px opposed to em is that elements width is fixed and so when a user increases the text size  the text will move out of the box. With %  the dimensions of the elements in the layout will only change as the user changes the size of the browser window or view port and again has no relation to the text size:</p>
<p style="text-align: left;"><img class="aligncenter size-full wp-image-193" title="em_bbc" src="http://dialdfordesign.com/wp-content/uploads/2009/06/em_bbc.jpg" alt="em_bbc" width="450" height="200" /></p>
<p style="text-align: left;">An element which has it&#8217;s size set in em&#8217;s has it&#8217;s height and width worked out depending on the size of the text. So if a user increases the text size the width and height of that element will increase in proportion to the text.</p>
<h2 style="text-align: center;">Coding using em</h2>
<p style="text-align: left;">It helps if you think each character as being in a box. At browser default text size this box will be 16px wide and so 1em is equal to 16px. If you increase the text size to 18px then the box increases in size and 1em becomes 18px. So 2em will now equal 18px x 2 = 36px and so on.</p>
<p style="text-align: left;">There is a way to simplify creating layouts using ems which I first read about from Andy Budd&#8217;s book <a href="http://www.amazon.co.uk/gp/product/1590596145">CSS Mastery</a>.</p>
<p style="text-align: left;">You can make 1 em = 10px by setting the overall font size to:</p>
<p style="text-align: center;"><span style="color: #ff00ff;">body{font-size: 62.5%}</span></p>
<p style="text-align: left;">62.5% of 16px (the default browser size) is 10px. So now you can just divide the pixel size you want to use by 10. So a button 150px long will become 15em long and will now scale as the text size increases! Hoorah!</p>
<p>If you want to learn more about creating Elastic layouts I recommend Jon Tagerine&#8217;s -<a href="http://jontangerine.com/log/2007/09/the-incredible-em-and-elastic-layouts-with-css"> The Incredible Em &amp; Elastic Layouts with CSS</a></p>
<p style="text-align: left;">Now you know a little bit about elastic layouts and coding in em I&#8217;m going to ruin your fun and tell you that many of the latest browsers have a feature called page zoom.</p>
<h2 style="text-align: center;">What&#8217;s Page Zoom?</h2>
<p style="text-align: left;">It&#8217;s best to think of page zoom as magnification. The browser takes the whole of the site and scales everything on the page relative to each other just as if you were looking through a magnifying glass. This means even a fixed width site coded in pixels would scale up nicely and takes the process of scaling out of your hands.</p>
<p style="text-align: left;">For a good comparison into text zoom and page zoom check out this article by Jeff Atwood &#8211; <a href="http://www.codinghorror.com/blog/archives/001212.html">The Two Types of Browser Zoom</a></p>
<p style="text-align: left;">So does this mean we can drop em and elastic layouts?</p>
<p style="text-align: left;">In the long term yes but at the moment there are still plenty of browsers out there which don&#8217;t support page zoom. Currently the only browsers<br />
which have full page  zoom are:</p>
<blockquote>
<p style="text-align: left;">Name [versions] &#8211; <a href="http://www.w3schools.com/browsers/browsers_stats.asp">browser market share</a></p>
<p style="text-align: left;">Chrome 2 &#8211; 0.8%, IE 7 &amp; 8 &#8211; 26.5%, Opera 6 to 10 2.2%, Safari 4 &#8211; no results yet and Firefox 3 &#8211; 44.3%.</p>
</blockquote>
<p style="text-align: left;">So if you don&#8217;t mind 25% of the people viewing your site not being able to scale it up correctly then ditch em and elastic<br />
layouts. Lets just hope it&#8217;s not the 25% of people who actually need to use it.</p>
<h2 style="text-align: center;">Can we can drop liquid layouts?</h2>
<p style="text-align: left;">No, page zoom doesn&#8217;t have the same benefits as a liquid layout. Liquid layouts are coded using percentages which makes the layout  scale depending on the size of the browser window where as Elastic Layouts and page zoom are reliant on the user scaling the layout.</p>
<p style="text-align: left;">Liquid layouts are still useful to make sure your site scales down when the user resizes their window to have more than one application on their screen. Or if your users  access your website on a low resolution device like a net book.</p>
<p><a name="skiptotheend"></a></p>
<h2 style="text-align: left;">So in summary here&#8217;s 10 tips on page zoom:<a href="http://tinyurl.com/nmu9ka"></a></h2>
<ol style="text-align: left;">
<li>1 in 4 people have some kind of visual impairment which make it hard to use a website.</li>
<li>The default text size is 16px but people can increase the size in most modern browsers.</li>
<li>To test how your site fairs with text size changes open it in firefox, select view &#8211; zoom and tick &#8216;zoom text only&#8217;.</li>
<li>You can cater for people changing the text size by coding your layouts in em.</li>
<li>To make it easier to do this you can make 1em equal 10px by making the overall font-size 62.5% then divide your widths by 10.</li>
<li>Page zoom in browser takes control of the scaling and will scale everything in relation to each other so no need for elastic layouts.</li>
<li>However 25% of users have browsers that don&#8217;t  support page zoom so lets not drop them just yet.</li>
<li>Liquid layouts and elastic layouts are often confused. Liquid layouts are coded using percentages rather than em.</li>
<li>Liquid layouts are useful as the browser window is scaled or to keep your site useable on low resolution devices.</li>
<li>So at the point we drop em layouts we should still code some liquiditiy into our designs</li>
</ol>
<p style="text-align: left;">
<p style="text-align: left;">Refering documents:</p>
<p style="text-align: left;">[1]  <a href="http://blogs.msdn.com/ie/archive/2006/02/07/526805.aspx">Page Zoom In IE7 &#8211; IEblog</a><br />
[2] <a href="http://en.wikipedia.org/wiki/Em_(typography)">Em and Typography &#8211; Wikipedia<br />
</a><a href="http://eslewhere.adactio.com/journal/1576/">Zoomfusion &#8211; JeremyKeith</a> <a href="http://www.baekdal.com/notes/work/browser-zoom/"><br />
Page zoom with images &#8211; Thomas Baekdal<br />
</a><a href="http://riddle.pl/emcalc/">Em calculator</a></p>
<p id="inter"><span id="i">Interact:</span><br />
- Will you be dropping elastic layouts?<br />
- Do you have any tips on coding elastic layouts for our readers?<br />
- Have you seen any sites which cope with increases in text size well or badly?</p>
<p id="inter">If you enjoyed this article please follow me on <a id="b" href="http://twitter.com/dialDfordesign">twitter</a> and <a id="p" href="http://dialdfordesign.com/?feed=rss2">RSS</a> <span id="yt">Thanks!</span></p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/dialdfordesign?a=6JLRdkNn5xc:PW0ZQaO7QTY:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/dialdfordesign?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/dialdfordesign?a=6JLRdkNn5xc:PW0ZQaO7QTY:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/dialdfordesign?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/dialdfordesign?a=6JLRdkNn5xc:PW0ZQaO7QTY:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/dialdfordesign?i=6JLRdkNn5xc:PW0ZQaO7QTY:gIN9vFwOqvQ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/dialdfordesign/~4/6JLRdkNn5xc" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://dialdfordesign.com/?feed=rss2&amp;p=185</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<feedburner:origLink>http://dialdfordesign.com/?p=185</feedburner:origLink></item>
		<item>
		<title>Twitter &amp; RSS feeds to inspire – 24 Ways Edition</title>
		<link>http://feedproxy.google.com/~r/dialdfordesign/~3/mZR5t_2AQmw/</link>
		<comments>http://dialdfordesign.com/?p=112#comments</comments>
		<pubDate>Sun, 07 Jun 2009 14:24:41 +0000</pubDate>
		<dc:creator>Steve</dc:creator>
				<category><![CDATA[Design Inspiration]]></category>
		<category><![CDATA[Accesibility]]></category>
		<category><![CDATA[Great Design]]></category>
		<category><![CDATA[Inspiration]]></category>
		<category><![CDATA[RSS]]></category>
		<category><![CDATA[Twitter]]></category>
		<category><![CDATA[Web Design]]></category>

		<guid isPermaLink="false">http://dialdfordesign.com/?p=112</guid>
		<description><![CDATA[
Fill out your twitter feed and rss reader with some of the top creatives and thinkers from the www.  24ways is a yearly web developer advent calender. Each day providing an interesting and inspiring article. I&#8217;ve compiled a list of links to each authors blog and twitter. A great starting point for fledgeling web designers [...]]]></description>
			<content:encoded><![CDATA[<h2><img class="aligncenter size-full wp-image-178" title="24ways" src="http://dialdfordesign.com/wp-content/uploads/2009/06/24ways.jpg" alt="24ways" width="450" height="200" /></h2>
<p>Fill out your twitter feed and rss reader with some of the top creatives and thinkers from the www.  <a href="http://24ways.org/">24ways</a> is a yearly web developer advent calender. Each day providing an interesting and inspiring article. I&#8217;ve compiled a list of links to each authors blog and twitter. A great starting point for fledgeling web designers and those who want to find inspiration from highly regarded people in their field.</p>
<p><span id="more-112"></span></p>
<h2><span style="color: #888888;">A</span></h2>
<p>Rachel Andrew &#8211; <a href="http://twitter.com/rachelandrew">Twitter</a> &amp; <a href="http://www.rachelandrew.co.uk/">Blog</a><br />
<em>web developer and writer over at edgeofmyseat.com</em>.</p>
<p>John Allsopp &#8211; <a href="https://twitter.com/johnallsopp">Twitter</a> &amp; <a href="http://johnfallsopp.com/">Blog</a><br />
<em><span class="skill">software engineer</span>, <span class="skill">speaker</span>, <span class="skill">writer</span>, <span class="skill">educator</span> and <span class="skill">surf lifesaver</span>, with a long standing interest in CSS</em>.</p>
<h2><span style="color: #888888;">B</span></h2>
<p>Gavin Bell &#8211; <a href="http://twitter.com/zzgavin">Twitter</a> &amp; <a href="http://gavinbell.com/">Blog</a><br />
<em>social software designer.<br />
</em></p>
<p>Kimberly Blessing &#8211; <a href="http://twitter.com/obiwankimberly">Twitter</a> &amp; <a href="http://www.kimberlyblessing.com/">Blog<br />
</a><em>a computer scientist, a Web developer, a standards evangelist, a feminist, and a geek.</em><a href="http://www.kimberlyblessing.com/"><br />
</a></p>
<p>Paul Boag &#8211; <a href="http://m.twitter.com/boagworld">Twitter</a> &amp; <a href="http://boagworld.com/">Blog</a><br />
<em>primary web strategist at Headscape and one of its three founders.</em></p>
<p>Mark Boulton &#8211; <a href="http://twitter.com/markboulton">Twitter</a> &amp; <a href="http://www.markboulton.co.uk/">Blog</a><em><br />
years of experience in designing or redesigning a large range of outputs from websites to applications.</em></p>
<p>Andy Budd &#8211; <a href="http://twitter.com/andybudd">Twitter</a> &amp; <a href="http://www.andybudd.com/">Blog</a><br />
<em>managing director of clearleft, renowned web developer and designer</em>.</p>
<h2><span style="color: #888888;">C</span></h2>
<p>Andy Clarke &#8211; <a href="http://twitter.com/Malarkey">Twitter</a> &amp; <a href="http://www.stuffandnonsense.co.uk/">Blog</a><br />
<em>contributor to the Web Standards Project  and  Invited Expert to the W3C&#8217;s CSS Working Group.</em></p>
<p>Dan Cederholmes<em> &#8211; </em><a href="http://twitter.com/simplebits">Twitter</a> &amp; <a href="http://simplebits.com/">Blog</a><em><br />
</em><em>a recognized expert in the field of standards-based web design.</em></p>
<p>Simon Collison &#8211; <a href="http://twitter.com/collylogic/">Twitter</a> &amp; <a href="http://www.colly.com/">Blog</a><em><br />
web designer/developer and author. Runs Erskine Design.</em></p>
<h2><span style="color: #888888;">D &#8211; E<br />
</span></h2>
<p>Mike Davies &#8211; No Twitter &amp; <a href="http://www.isolani.co.uk/">Blog</a><em><br />
a senior web developer for Yahoo Europe, based in London.</em></p>
<p>Dustin Diaz &#8211; <a href="http://twitter.com/ded">Twitter</a> &amp; <a href="http://www.dustindiaz.com/">Blog</a><em><br />
User Interface Engineer at Twitter                                 who enjoys writing JavaScript, CSS, and HTML.</em></p>
<p>Natalie Downe &#8211; <a href="http://twitter.com/Natbat">Twitter</a> &amp; <a href="http://natbat.net/">Blog</a><em><br />
experienced usability consultant and project manager, her first loves remain front-end development and usability engineering. </em></p>
<p>James Edwards &#8211; No Twitter &amp; <a href="http://www.brothercake.com/">Blog</a><br />
<em>web-developer based in the <abbr title="United Kingdom">UK</abbr>,  			specialising in client-side programming,   			with a strong focus on accessibility</em>.</p>
<h2><span style="color: #888888;">F &#8211; G<br />
</span></h2>
<p>Derek Featherstone &#8211; <a href="http://twitter.com/feather">Twitter</a> &amp; <a href="http://boxofchocolates.ca/">Blog</a><em><br />
a well-known speaker with a reputation for inspiring and exciting the audience with practical demonstrations.</em></p>
<p>Brian Fling &#8211; <a href="http://twitter.com/fling">Twitter</a> &amp; <a href="http://flinglog.com/">Blog</a><br />
<em>entrepreneur, a designer, a mobile expert, speaker, author and idea guy</em>.</p>
<p>Ian Forrester &#8211; <a href="http://twitter.com/cubicgarden">Twitter</a> &amp; <a href="http://www.cubicgarden.com/blojsom/blog/cubicgarden/">Blog</a><span><em><br />
XML, Open Standards, The Commons and Data Portability advocate.</em></span></p>
<p>Patrick Griffiths &#8211; <a href="http://twitter.com/ptg">Twitter</a> &amp; No Blog<em><br />
been doing the professional web developer thing since 1999.</em></p>
<h2><span style="color: #888888;">H<br />
</span></h2>
<p>Christian Heilmann &#8211; <a href="http://twitter.com/codepo8">Twitter</a> &amp; <a href="http://www.wait-till-i.com/">Blog</a><br />
<em>International Developer Evangelist &#8211; working for the Yahoo Developer Network in the lovely town of London, England.</em></p>
<p>Michael Heilemann &#8211; <a href="http://twitter.com/heilemann">Twitter</a> &amp; <a href="http://binarybonsai.com/">Blog</a><em><br />
30-year-old Computer Game Developer and Interface Design Enthusiast.<br />
</em></p>
<p>Jon Hicks &#8211; <a href="http://twitter.com/hicksdesign">Twitter</a> &amp; <a href="http://hicksdesign.co.uk/journal/">Blog<br />
</a><em>handles the new-fangled media projects: Interface design, icons, websites. Currently working full-time with Opera Software.</em><a href="http://hicksdesign.co.uk/journal/"><br />
</a></p>
<p>Molly E. Holzschlag &#8211; <a href="http://twitter.com/mollydotcom">Twitter</a> &amp; <a href="http://molly.com/">Blog</a><em><br />
a well-known Web standards advocate, instructor, and author. </em></p>
<h2><span style="color: #888888;">I &#8211; J<br />
</span></h2>
<p>Shaun Inman &#8211; <a href="http://twitter.com/shauninman">Twitter</a> &amp; <a href="http://www.shauninman.com/blog">Blog</a><em><br />
successful designer and developer living and working out of Chattanooga.</em></p>
<p>Roger Johansson &#8211; No Twitter &amp; <a href="http://www.456bereastreet.com/">Blog<br />
</a><em>Swedish web professional who has been working with the web and other interactive media since 1994.</em></p>
<h2><span style="color: #888888;">K<br />
</span></h2>
<p>Jeremy Keith &#8211; <a href="http://twitter.com/adactio">Twitter</a> &amp; <a href="http://adactio.com/journal/">Blog</a><span class="bio"><br />
<em>an Irish web developer living and working in Brighton, England.</em></span></p>
<p>Peter-Paul Koch &#8211; <a href="http://twitter.com/ppk">Twitter</a> &amp; <a href="http://www.quirksmode.org/blog/index.html">Blog</a><br />
<em>freelance front-end consultant, agent, and trainer. </em></p>
<p>Nate Koechley &#8211; <a href="http://twitter.com/natekoechley">Twitter</a> &amp; <a href="http://nate.koechley.com/blog/">Blog</a><em><br />
One of the first web developers at Yahoo!. Been instrumental in creating and defining the practice of Web Development and Frontend Engineering.</em></p>
<h2><span style="color: #888888;">L<br />
</span></h2>
<p>Stuart Langridge &#8211; <a href="http://twitter.com/sil">Twitter</a> &amp; <a href="http://www.kryogenix.org/days/">Blog</a><em><br />
designer for a developer for a media firm in the UK.</em></p>
<p>Patrick H. Lauke &#8211; <a href="http://twitter.com/patrick_h_lauke">Twitter</a> &amp; <a href="http://www.splintered.co.uk/">Blog</a><em><br />
known to rant and evangelise about accessible and usable web sites.</em></p>
<p>Marcus Lillington &#8211; <a href="http://twitter.com/marcus67">Twitter</a> &amp; No Blog<br />
<em>Headscape’s business development director has experience in commercial, consulting and project management roles.</em></p>
<p>Ian Lloyd &#8211; <a href="http://twitter.com/lloydi">Twitter</a> &amp; <a href="http://lloydi.com/">Blog</a><em><br />
full time as a senior web developer for 	  Nationwide Building Society.</em></p>
<h2><span style="color: #888888;">M</span></h2>
<p>Ethan Marcotte &#8211; <a href="http://twitter.com/beep">Twitter</a> &amp; <a href="http://unstoppablerobotninja.com/">Blog</a><br />
<em>a web designer/developer living in Cambridge.</em></p>
<p>Drew McLellan &#8211; <a href="http://twitter.com/drewm">Twitter</a> &amp; <a href="http://allinthehead.com/">Blog</a><br />
<em>has been hacking on the web since around 1996 following an unfortunate incident with a margarine tub.</em></p>
<p>Ann McMeekin -<a href="http://twitter.com/pixeldiva"> Twitter</a> &amp; <a href="http://www.pixeldiva.co.uk/">Blog</a><br />
<em>knitter, shoe obsessive and freelance web, design and accessibility consultant.</em></p>
<p>Eric Meyer &#8211; <a href="http://twitter.com/meyerweb/">Twitter</a> &amp; <a href="http://meyerweb.com/eric/">Blog<br />
</a><em>has been working with the Web since late 1993 and is an internationally recognized expert on the subjects of HTML and CSS.</em><a href="http://meyerweb.com/eric/"><br />
</a></p>
<p>Cameron Moll &#8211; <a href="http://twitter.com/cameronmoll">Twitter</a> &amp; <a href="http://cameronmoll.com/">Blog</a><br />
<em>designer, author, speaker, or any combination of the three.</em></p>
<h2><span style="color: #888888;">N &#8211; P<br />
</span></h2>
<p><em></em></p>
<p>Mark Norman-Francis &#8211; <a href="https://twitter.com/cackhanded">Twitter</a> &amp; <a href="http://marknormanfrancis.com/">Blog</a><em><br />
a professional web developer from <span class="locality">London.</span></em></p>
<p>Brian Oberkirch &#8211; <a href="http://twitter.com/brianoberkirch">Twitter</a> &amp; <a href="http://www.brianoberkirch.com/">Blog</a><br />
<em>a marketing consultant focused on social media and product/service development.</em></p>
<p>Veerle Pieters &#8211; <a href="http://twitter.com/vpieters">Twitter</a> &amp; <a href="http://veerle.duoh.com/">Blog</a><em><br />
graphic/web designer living in Belgium. CEO of Duoh! n.v.</em></p>
<h2><span style="color: #888888;">R</span></h2>
<p>Matt Riggott &#8211; <a href="http://twitter.com/riggbot">Twitter</a> &amp; <a href="http://www.flother.com/">Blog</a><em><br />
one part amateur photographer, one part programmer, and ravenous devourer of political news.</em></p>
<p>Dan Rubin &#8211; <a href="http://twitter.com/danrubin">Twitter</a> &amp; <a href="http://superfluousbanter.org/">Blog</a><em><br />
graphic designer, web developer, musician and Apple enthusiast. </em></p>
<p>Gareth Rushgrove &#8211; <a href="http://twitter.com/garethr">Twitter</a> &amp; <a href="http://morethanseven.net/">Blog</a><br />
<em>professional web developer, currently working mainly with Python and Django.</em></p>
<p>Richard Rutter &#8211; <a href="http://twitter.com/clagnut">Twitter</a> &amp; <a href="http://clagnut.com/">Blog</a><em><span class="title"><br />
production Director</span> at <span class="url org">Clearleft</span>.</em></p>
<h2><span style="color: #888888;">S<br />
</span></h2>
<p>Jason Santa Maria &#8211; <a href="http://twitter.com/jasonsantamaria">Twitter</a> &amp; <a href="http://www.jasonsantamaria.com/">Blog<br />
</a><em>graphic designer living in sunny Brooklyn.</em><a href="http://www.jasonsantamaria.com/"><br />
</a></p>
<p>Dave Shea &#8211; <a href="http://twitter.com/mezzoblue">Twitter</a> &amp; <a href="http://www.mezzoblue.com/">Blog</a><br />
<em>a Vancouver local and a freelance designer.<br />
</em></p>
<p>Jonathan Snook &#8211; <a href="http://twitter.com/snookca">Twitter</a> &amp; <a href="http://snook.ca/">Blog<br />
</a><em>creator of striking designs, impeccable markup and code, and forward-thinking ideas and applications.</em><a href="http://snook.ca/"><br />
</a></p>
<p>Matthew Somerville &#8211; <a href="http://m.twitter.com/dracos">Twitter</a> &amp; <a href="http://www.dracos.co.uk/">Blog</a><em><br />
lives in the <acronym title="United Kingdom">UK</acronym>, working from home planning, designing and programming websites.</em></p>
<p>Elliot Jay Stocks &#8211; <a href="http://twitter.com/elliotjaystocks">Twitter</a> &amp; <a href="http://elliotjaystocks.com/blog/">Blog</a><br />
<em><span>designer</span>, an <span>illustrator</span>, a <span>speaker</span>, an <span>author</span>, and occasionally a <span>musician</span>.</em></p>
<p>Brian Suda &#8211; <a href="http://twitter.com/briansuda">Twitter</a> &amp; <a href="http://suda.co.uk/">Blog</a><span class="role"><em><br />
master informatician</em>&#8230; (your guess is as good as mine).</span></p>
<h2><span style="color: #888888;">T &#8211; V<br />
</span></h2>
<p>Jon Tan &#8211; <a href="http://twitter.com/jontangerine">Twitter</a> &amp; <a href="http://jontangerine.com/">Blog</a><br />
<em>creative director at OmniTI and sometime writer and speaker in Bristol, UK.</em></p>
<p>Andrew Turner &#8211; <em> </em><a href="http://twitter.com/ajturner">Twitter</a> &amp; <a href="http://highearthorbit.com/">Blog</a><br />
<em>a neogeographer involved in helping build the geospatial web.</em></p>
<p>Tim Van Damme &#8211; <a href="http://twitter.com/maxvoltar">Twitter</a> &amp; <a href="http://maxvoltar.com/">Blog</a><em><br />
interface designer, based and raised in Belgium. Design interfaces as a freelancer at Made by Elephant.</em></p>
<h2><span style="color: #888888;">W</span></h2>
<p>Ben Ward &#8211; <a href="http://twitter.com/benward">Twitter</a> &amp; <a href="http://ben-ward.co.uk/">Blog<br />
</a><em>works at the  	        <span class="agent vcard"> <span class="fn org"> <span class="organization-name">Yahoo</span> <span class="organization-unit">Developer Network</span></span></span>,  	        <span class="agent vcard"> <span class="role">admin</span> and  	            <span class="role">author</span> at  	            <span class="fn org">microformats.org</span></span></em>.</p>
<p>Henriette Weber &#8211; <a href="http://twitter.com/redsoda">Twitter</a> &amp;<a href="http://henrietteweber.com/"> Blog</a><em><br />
founder of Toothless Tiger where she acts as the social marketing rebel extraordinaire.</em></p>
<p>Meri Williams &#8211; Twitter (private) &amp; <a href="http://blog.meriwilliams.com/">Blog</a><em><br />
an Information &amp; Decision Solutions manager and web developer.</em></p>
<p>Simon Willison &#8211; <a href="http://twitter.com/simonw">Twitter</a> &amp; <a href="http://simonwillison.net/">Blog</a><em><br />
co-creator of the Django Web framework.</em></p>
<h2><span style="color: #888888;">Y &#8211; Z<br />
</span></h2>
<p>Kevin Yank &#8211; <a href="http://twitter.com/sentience">Twitter</a> &amp; <a href="http://www.kevinyank.com/blog/">Blog</a><br />
<em>technical director of sitepoint.com.</em></p>
<p>Jeffrey Zeldman &#8211; <a href="http://twitter.com/zeldman">Twitter</a> &amp; <a href="http://www.zeldman.com/">Blog<br />
</a><em>was one of the first designers, bloggers, and independent publishers on the web, and one of the first web design teachers </em></p>
<p id="inter"><span id="i">Interact:</span><br />
- Please recommend any designers, developers and creatives you follow in the comments below.<br />
- If you follow any of the above and have feedback let me know.</p>
<p id="inter">If you enjoyed this article please follow me on <a id="b" href="http://twitter.com/dialDfordesign">twitter</a> and <a id="p" href="http://dialdfordesign.com/?feed=rss2">RSS</a> <span id="yt">Thanks!</span></p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/dialdfordesign?a=mZR5t_2AQmw:3ybdg055UKo:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/dialdfordesign?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/dialdfordesign?a=mZR5t_2AQmw:3ybdg055UKo:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/dialdfordesign?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/dialdfordesign?a=mZR5t_2AQmw:3ybdg055UKo:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/dialdfordesign?i=mZR5t_2AQmw:3ybdg055UKo:gIN9vFwOqvQ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/dialdfordesign/~4/mZR5t_2AQmw" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://dialdfordesign.com/?feed=rss2&amp;p=112</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://dialdfordesign.com/?p=112</feedburner:origLink></item>
		<item>
		<title>Brew Time Titbit: Layer Tennis. Fancy A Game?</title>
		<link>http://feedproxy.google.com/~r/dialdfordesign/~3/coRa0HnbA3Y/</link>
		<comments>http://dialdfordesign.com/?p=153#comments</comments>
		<pubDate>Thu, 04 Jun 2009 22:11:55 +0000</pubDate>
		<dc:creator>Steve</dc:creator>
				<category><![CDATA[Brew Time Titbit]]></category>
		<category><![CDATA[Great Design]]></category>
		<category><![CDATA[Inspiration]]></category>
		<category><![CDATA[Photoshop]]></category>

		<guid isPermaLink="false">http://dialdfordesign.com/?p=153</guid>
		<description><![CDATA[
The genius concept for layer tennis was created by Coudal Partners and regular games are played on a Friday afternoon to keep the guys over there entertained. It involves two people adding elements to a document using all the usual Adobe packages in volleys &#8211; each player trying to out play the other. They usually [...]


Related posts:<ol><li><a href='http://dialdfordesign.com/?p=60' rel='bookmark' title='Permanent Link: Brew Time Titbit: What is Doctype?'>Brew Time Titbit: What is Doctype?</a></li></ol>]]></description>
			<content:encoded><![CDATA[<pre style="text-align: center;"><img class="aligncenter size-full wp-image-154" title="layertennis" src="http://dialdfordesign.com/wp-content/uploads/2009/06/layertennis.jpg" alt="layertennis" width="450" height="200" /></pre>
<p>The genius concept for layer tennis was created by <a href="http://www.coudal.com/">Coudal Partners</a> and regular games are played on a Friday afternoon to keep the guys over there entertained. It involves two people adding elements to a document using all the usual Adobe packages in volleys &#8211; each player trying to out play the other. They usually play for about 5 rounds and each player has about 15 mins to prepare a volley. After all the rounds a winner is picked! You can follow the matches live at <a href="http://layertennis.com/">layertennis.com</a></p>
<p>It sounds like much fun and I would like to organise a game with you guys &#8211; with rounds spread over a few weeks rather than an afternoon!</p>
<p><strong>So here is how to play:</strong></p>
<ol>
<li>I&#8217;ve <strong>created a photoshop file</strong>, put a little something inside and posted it below.</li>
<li><strong>Download the file</strong> and add something to it in which ever program you like.</li>
<li><strong>Change it</strong> all you like but try to keep it on a theme.</li>
<li>Send<strong><em> </em>your volley back to me at dialdfordesign[at]googlemail.com</strong>, tell me why you made the changes you did and links to any attributions you need to make for elements you used.</li>
<li>After a bunch of files get submitted I&#8217;ll <strong>post pics of all the entries</strong> and pick 3 to put back up for the next round.</li>
<li>Bring it on and spread the word!</li>
</ol>
<p style="text-align: center;"><a href="http://dialdfordesign.com/layertennis/layertennis_round1.zip">Click Here To Download Round 1</a>!</p>
<p style="text-align: left;">A few things to remember:  Try and keep the layers intact, don&#8217;t worry about making it look too fancy and have fun!</p>
<p style="text-align: center;">Keep up to date <a href="http://twitter.com/dialDfordesign">follow me  on twitter</a> or add me to <a href="http://dialdfordesign.com/?feed=rss2">your RSS feed</a>.</p>
<pre style="text-align: center;">(original image by <a href="http://www.flickr.com/photos/zoomar/144301961/">zoomar</a>)</pre>


<p>Related posts:<ol><li><a href='http://dialdfordesign.com/?p=60' rel='bookmark' title='Permanent Link: Brew Time Titbit: What is Doctype?'>Brew Time Titbit: What is Doctype?</a></li></ol></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/dialdfordesign?a=coRa0HnbA3Y:JfP2HykSKxQ:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/dialdfordesign?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/dialdfordesign?a=coRa0HnbA3Y:JfP2HykSKxQ:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/dialdfordesign?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/dialdfordesign?a=coRa0HnbA3Y:JfP2HykSKxQ:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/dialdfordesign?i=coRa0HnbA3Y:JfP2HykSKxQ:gIN9vFwOqvQ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/dialdfordesign/~4/coRa0HnbA3Y" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://dialdfordesign.com/?feed=rss2&amp;p=153</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://dialdfordesign.com/?p=153</feedburner:origLink></item>
		<item>
		<title>Design Inspiration: James Hewlett Beatles Animation</title>
		<link>http://feedproxy.google.com/~r/dialdfordesign/~3/tzTdTfhKsEA/</link>
		<comments>http://dialdfordesign.com/?p=148#comments</comments>
		<pubDate>Wed, 03 Jun 2009 19:22:55 +0000</pubDate>
		<dc:creator>Steve</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Animation]]></category>
		<category><![CDATA[Inspiration]]></category>
		<category><![CDATA[Video]]></category>

		<guid isPermaLink="false">http://dialdfordesign.com/?p=148</guid>
		<description><![CDATA[Check out this fantastical animation by James Hewlett of Gorillaz fame for the new Beatles rock band game. It&#8217;s got the distinctive styling of James Hewletts art along side Beatles classics and styling. Even if you&#8217;re not interested in the game this is definitely an inspiring piece of work:



Related posts:Design Inspiration: UNKLE &#8211; Heaven video [...]


Related posts:<ol><li><a href='http://dialdfordesign.com/?p=129' rel='bookmark' title='Permanent Link: Design Inspiration: UNKLE &#8211; Heaven video remix by We Love You So'>Design Inspiration: UNKLE &#8211; Heaven video remix by We Love You So</a></li><li><a href='http://dialdfordesign.com/?p=32' rel='bookmark' title='Permanent Link: Design Observation: Beautiful Animation'>Design Observation: Beautiful Animation</a></li></ol>]]></description>
			<content:encoded><![CDATA[<p>Check out this fantastical animation by James Hewlett of Gorillaz fame for the new Beatles rock band game. It&#8217;s got the distinctive styling of James Hewletts art along side Beatles classics and styling. Even if you&#8217;re not interested in the game this is definitely an inspiring piece of work:</p>
<p><center><object width="460" height="340" data="http://www.youtube.com/v/R_njrhDDJ34&amp;hl=en&amp;fs=1" type="application/x-shockwave-flash"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/R_njrhDDJ34&amp;hl=en&amp;fs=1" /><param name="allowfullscreen" value="true" /></object></center></p>


<p>Related posts:<ol><li><a href='http://dialdfordesign.com/?p=129' rel='bookmark' title='Permanent Link: Design Inspiration: UNKLE &#8211; Heaven video remix by We Love You So'>Design Inspiration: UNKLE &#8211; Heaven video remix by We Love You So</a></li><li><a href='http://dialdfordesign.com/?p=32' rel='bookmark' title='Permanent Link: Design Observation: Beautiful Animation'>Design Observation: Beautiful Animation</a></li></ol></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/dialdfordesign?a=tzTdTfhKsEA:JLwd0dGNMBk:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/dialdfordesign?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/dialdfordesign?a=tzTdTfhKsEA:JLwd0dGNMBk:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/dialdfordesign?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/dialdfordesign?a=tzTdTfhKsEA:JLwd0dGNMBk:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/dialdfordesign?i=tzTdTfhKsEA:JLwd0dGNMBk:gIN9vFwOqvQ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/dialdfordesign/~4/tzTdTfhKsEA" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://dialdfordesign.com/?feed=rss2&amp;p=148</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://dialdfordesign.com/?p=148</feedburner:origLink></item>
		<item>
		<title>Applied Design: Twitter Peek-a-Boo Sidebar</title>
		<link>http://feedproxy.google.com/~r/dialdfordesign/~3/loe81e-0vng/</link>
		<comments>http://dialdfordesign.com/?p=136#comments</comments>
		<pubDate>Mon, 01 Jun 2009 23:31:35 +0000</pubDate>
		<dc:creator>Steve</dc:creator>
				<category><![CDATA[Applied Design]]></category>
		<category><![CDATA[Great Design]]></category>
		<category><![CDATA[Photoshop]]></category>
		<category><![CDATA[Resolutions]]></category>
		<category><![CDATA[Twitter]]></category>

		<guid isPermaLink="false">http://dialdfordesign.com/?p=136</guid>
		<description><![CDATA[Twitter sidebars are a useful way of providing info about yourself to your users and many people have come up with some inventive designs. The problem which I&#8217;ve come across with most designs is that at a resolution of 1024 x 768 the sidebar can get cut in half and the extra information you&#8217;re trying [...]]]></description>
			<content:encoded><![CDATA[<p>Twitter sidebars are a useful way of providing info about yourself to your users and many people have come up with some inventive designs. The problem which I&#8217;ve come across with most designs is that at a resolution of 1024 x 768 the sidebar can get cut in half and the extra information you&#8217;re trying to provide gets cut in half too:</p>
<p><a href="http://twitter.com/JonathanNelson"><img class="aligncenter size-full wp-image-139" title="peek1" src="http://dialdfordesign.com/wp-content/uploads/2009/06/peek1.jpg" alt="peek1" width="450" height="200" /></a></p>
<p><span id="more-136"></span></p>
<p>If you have a side bar on your twitter background I recommend getting the <a href="https://addons.mozilla.org/en-US/firefox/addon/60">Firefox web developers tool bar</a> and checking to see what your profile looks like by using the resize function:</p>
<p><a href="https://addons.mozilla.org/en-US/firefox/addon/60"><img class="aligncenter size-full wp-image-141" title="peek3" src="http://dialdfordesign.com/wp-content/uploads/2009/06/peek3.jpg" alt="peek3" width="450" height="200" /></a></p>
<p>If your side bar is cut in half at 1024 x 768 then there&#8217;s no point in displaying it as it doesn&#8217;t provide any function. Best hide it and have it appear at any resolution above 1280 x 960 in a Peek-A-Boo fashion.</p>
<p>To make a Peek-a-Boo sidebar you need to utilise the space between left-hand edge of the twitter container at 1024 x 768 and at 1280  x 960:</p>
<p><img class="aligncenter size-full wp-image-142" title="peek4" src="http://dialdfordesign.com/wp-content/uploads/2009/06/peek4.jpg" alt="peek4" width="450" height="200" /></p>
<p>For my background I took it a step further to support 1440 x 960 and made a 3 stage design which hides a kind of easter egg. When people move from a low resolution to high resolution and return to my twitter page it should put a smile on their face (unless they&#8217;ve read this and I&#8217;ve given it away dammit!). The images below shows what happens as the resolution progressively gets bigger:</p>
<p><img class="aligncenter size-full wp-image-143" title="peek5" src="http://dialdfordesign.com/wp-content/uploads/2009/06/peek5.jpg" alt="peek5" width="450" height="200" /></p>
<p><img class="aligncenter size-full wp-image-144" title="peek6" src="http://dialdfordesign.com/wp-content/uploads/2009/06/peek6.jpg" alt="peek6" width="450" height="200" /></p>
<p><img class="aligncenter size-full wp-image-145" title="peek7" src="http://dialdfordesign.com/wp-content/uploads/2009/06/peek7.jpg" alt="peek7" width="450" height="200" /></p>
<p>So there you have it. If you carefully position your details, check your background at different resolutions and use my Peek-A-Boo method your profile page should look great to a larger amount of users.</p>
<p>If you&#8217;re itching to have a go copy the picture below and use it as a guide for your own background widths:</p>
<p><img class="aligncenter size-full wp-image-138" title="peek8" src="http://dialdfordesign.com/wp-content/uploads/2009/06/peek8.jpg" alt="peek8" width="450" height="200" /></p>
<p>Here&#8217;s a couple of things to remember:</p>
<p>* Check your twitter public profile page rather than your twitter home page &#8211; the sizes are slightly different.</p>
<p>* 800 x 600 and resolutions below won&#8217;t have space for any sidebars.</p>
<p>* The Peek-A-Boo method doesn&#8217;t cater for people  covering up the sidebar by manually resizing their browser but I don&#8217;t think anything can.</p>
<p>If you enjoyed this article please <a href="http://twitter.com/dialDfordesign">follow me on twitter</a> (more design, less crap) and add <a href="http://dialdfordesign.com/?feed=rss2">D4DD to your rss reader</a>! Thanks!</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/dialdfordesign?a=loe81e-0vng:EButb_toGmQ:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/dialdfordesign?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/dialdfordesign?a=loe81e-0vng:EButb_toGmQ:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/dialdfordesign?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/dialdfordesign?a=loe81e-0vng:EButb_toGmQ:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/dialdfordesign?i=loe81e-0vng:EButb_toGmQ:gIN9vFwOqvQ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/dialdfordesign/~4/loe81e-0vng" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://dialdfordesign.com/?feed=rss2&amp;p=136</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://dialdfordesign.com/?p=136</feedburner:origLink></item>
		<item>
		<title>Design Inspiration: UNKLE – Heaven video remix by We Love You So</title>
		<link>http://feedproxy.google.com/~r/dialdfordesign/~3/LY9jRvXr-TI/</link>
		<comments>http://dialdfordesign.com/?p=129#comments</comments>
		<pubDate>Mon, 01 Jun 2009 19:56:58 +0000</pubDate>
		<dc:creator>Steve</dc:creator>
				<category><![CDATA[Design Inspiration]]></category>
		<category><![CDATA[Animation]]></category>
		<category><![CDATA[Film]]></category>
		<category><![CDATA[Inspiration]]></category>
		<category><![CDATA[Video]]></category>

		<guid isPermaLink="false">http://dialdfordesign.com/?p=129</guid>
		<description><![CDATA[An amazing piece of work combining the track Heaven by UNKLE to some fantastic skate footage by Spike Jonze (who&#8217;s working on the Where The Wild Things Are film). Beautifully shot with slow motion pieces followed by something completely unexpected at the end. A real treat to watch especially in full screen and thanks to [...]


Related posts:<ol><li><a href='http://dialdfordesign.com/?p=32' rel='bookmark' title='Permanent Link: Design Observation: Beautiful Animation'>Design Observation: Beautiful Animation</a></li><li><a href='http://dialdfordesign.com/?p=148' rel='bookmark' title='Permanent Link: Design Inspiration: James Hewlett Beatles Animation'>Design Inspiration: James Hewlett Beatles Animation</a></li></ol>]]></description>
			<content:encoded><![CDATA[<p>An amazing piece of work combining the track Heaven by UNKLE to some fantastic skate footage by Spike Jonze (who&#8217;s working on the Where The Wild Things Are film). Beautifully shot with slow motion pieces followed by something completely unexpected at the end. A real treat to watch especially in full screen and thanks to <a href="http://www.thisthind.com/">Ricky T</a> for putting me onto it!<br />
<center><br />
<object width="400" height="230" data="http://vimeo.com/moogaloop.swf?clip_id=4849629&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=&amp;fullscreen=1" type="application/x-shockwave-flash"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://vimeo.com/moogaloop.swf?clip_id=4849629&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=&amp;fullscreen=1" /></object></p>
<p><a href="http://vimeo.com/4849629">Unkle &#8211; Heaven Remix</a> from <a href="http://vimeo.com/weloveyouso">We Love You So</a> on <a href="http://vimeo.com">Vimeo</a>.</center></p>


<p>Related posts:<ol><li><a href='http://dialdfordesign.com/?p=32' rel='bookmark' title='Permanent Link: Design Observation: Beautiful Animation'>Design Observation: Beautiful Animation</a></li><li><a href='http://dialdfordesign.com/?p=148' rel='bookmark' title='Permanent Link: Design Inspiration: James Hewlett Beatles Animation'>Design Inspiration: James Hewlett Beatles Animation</a></li></ol></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/dialdfordesign?a=LY9jRvXr-TI:l-2U0A3kAbM:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/dialdfordesign?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/dialdfordesign?a=LY9jRvXr-TI:l-2U0A3kAbM:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/dialdfordesign?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/dialdfordesign?a=LY9jRvXr-TI:l-2U0A3kAbM:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/dialdfordesign?i=LY9jRvXr-TI:l-2U0A3kAbM:gIN9vFwOqvQ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/dialdfordesign/~4/LY9jRvXr-TI" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://dialdfordesign.com/?feed=rss2&amp;p=129</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://dialdfordesign.com/?p=129</feedburner:origLink></item>
		<item>
		<title>Futher Reading: free downloads, killer contract &amp; web fonts</title>
		<link>http://feedproxy.google.com/~r/dialdfordesign/~3/9pNcHQy47gM/</link>
		<comments>http://dialdfordesign.com/?p=123#comments</comments>
		<pubDate>Sat, 30 May 2009 09:17:52 +0000</pubDate>
		<dc:creator>Steve</dc:creator>
				<category><![CDATA[Futher Reading]]></category>
		<category><![CDATA[Contracts]]></category>
		<category><![CDATA[Fonts]]></category>
		<category><![CDATA[Great Design]]></category>
		<category><![CDATA[Jobs]]></category>

		<guid isPermaLink="false">http://dialdfordesign.com/?p=123</guid>
		<description><![CDATA[
Good vs Great Design by Cameron Moll - Free PDF Download
Web Fonts Now (how we are doing with that) by Jeffery Zeldman  &#8211; Article
Contract Killer by Andy Clarke -  Tutorial
10 Nice To Have Skills For Front End Developers by Louis Lazaris- Article
Chrome Experiments - Showcase

Got any suggestions for interesting articles? Let me know by dropping [...]


Related posts:<ol><li><a href='http://dialdfordesign.com/?p=66' rel='bookmark' title='Permanent Link: Futher Reading 2: Men Need Speed, The 10 Minute Rule and Bye Bye 960px'>Futher Reading 2: Men Need Speed, The 10 Minute Rule and Bye Bye 960px</a></li><li><a href='http://dialdfordesign.com/?p=15' rel='bookmark' title='Permanent Link: Futher Reading 1: More Twitter, Firefox 3.5 and Progressive Enhancement.'>Futher Reading 1: More Twitter, Firefox 3.5 and Progressive Enhancement.</a></li></ol>]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-full wp-image-52" title="dd4dreading" src="http://dialdfordesign.com/wp-content/uploads/2009/04/dd4dreading.jpg" alt="dd4dreading" width="101" height="88" /></p>
<p><a href="http://cameronmoll.com/archives/2009/05/free_download_good_vs_great_design/">Good vs Great Design</a> by Cameron Moll -<strong> Free PDF Download</strong></p>
<p><a href="http://www.zeldman.com/2009/05/23/web-fonts-now-how-were-doing-with-that/">Web Fonts Now (how we are doing with that)</a> by Jeffery Zeldman  &#8211; <strong>Article</strong></p>
<p><a href="http://24ways.org/2008/contract-killer">Contract Killer</a> by Andy Clarke -  <strong>Tutorial</strong></p>
<p><a href="http://www.impressivewebs.com/10-nice-to-have-skills-for-front-end-developers/">10 Nice To Have Skills For Front End Developers</a> by Louis Lazaris-<strong> Article</strong></p>
<p><a href="http://www.chromeexperiments.com/">Chrome Experiments</a> -<strong> Showcase<br />
</strong></p>
<p>Got any suggestions for interesting articles? Let me know by dropping them in the comments! Thanks!</p>


<p>Related posts:<ol><li><a href='http://dialdfordesign.com/?p=66' rel='bookmark' title='Permanent Link: Futher Reading 2: Men Need Speed, The 10 Minute Rule and Bye Bye 960px'>Futher Reading 2: Men Need Speed, The 10 Minute Rule and Bye Bye 960px</a></li><li><a href='http://dialdfordesign.com/?p=15' rel='bookmark' title='Permanent Link: Futher Reading 1: More Twitter, Firefox 3.5 and Progressive Enhancement.'>Futher Reading 1: More Twitter, Firefox 3.5 and Progressive Enhancement.</a></li></ol></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/dialdfordesign?a=9pNcHQy47gM:wXFiDfLYNVc:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/dialdfordesign?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/dialdfordesign?a=9pNcHQy47gM:wXFiDfLYNVc:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/dialdfordesign?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/dialdfordesign?a=9pNcHQy47gM:wXFiDfLYNVc:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/dialdfordesign?i=9pNcHQy47gM:wXFiDfLYNVc:gIN9vFwOqvQ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/dialdfordesign/~4/9pNcHQy47gM" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://dialdfordesign.com/?feed=rss2&amp;p=123</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://dialdfordesign.com/?p=123</feedburner:origLink></item>
		<item>
		<title>Applied Design: Hidden Text &amp; Magnification</title>
		<link>http://feedproxy.google.com/~r/dialdfordesign/~3/cpwne8503zo/</link>
		<comments>http://dialdfordesign.com/?p=71#comments</comments>
		<pubDate>Wed, 20 May 2009 21:46:59 +0000</pubDate>
		<dc:creator>Steve</dc:creator>
				<category><![CDATA[Applied Design]]></category>
		<category><![CDATA[Accesibility]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[Web Design]]></category>

		<guid isPermaLink="false">http://dialdfordesign.com/?p=71</guid>
		<description><![CDATA[
Have you considered people using magnification programs when building your hover images or navigation? Here&#8217;s a quick look into a common problem with magnifiers and a simple fix to keep your users smiling.
This post came about after a dilemma involving my site design. I&#8217;m going to be adding icons on the sidebar which when hovered [...]


Related posts:<ol><li><a href='http://dialdfordesign.com/?p=37' rel='bookmark' title='Permanent Link: Applied Design: foxholebank.com &#8211; Paper Prototype'>Applied Design: foxholebank.com &#8211; Paper Prototype</a></li></ol>]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-full wp-image-54" title="dd4dapplied" src="http://dialdfordesign.com/wp-content/uploads/2009/04/dd4dapplied.jpg" alt="dd4dapplied" width="100" height="103" /></p>
<blockquote><p>Have you considered people using magnification programs when building your hover images or navigation? Here&#8217;s a quick look into a common problem with magnifiers and a simple fix to keep your users smiling.</p></blockquote>
<p>This post came about after a dilemma involving my site design. I&#8217;m going to be adding icons on the sidebar which when hovered over change colour and have text appear next to them for example,&#8221;feed me&#8221;,  &#8216;tweet me&#8217;, &#8217;shout me&#8217;.</p>
<p>Now for screen readers I don&#8217;t see this being a problem as can give the text a large minus left-margin: left-margin: -10000px; which pops into the required place when the icon is hovered over. This mean the text is still is readable in the html unlike using display: none which hides the text from screen readers. So I&#8217;m sorted for accessibility right? Well not necessarily.<br />
When reading accessibility articles I feel the limitations of magnification programs are often overlooked. When someone is using a magnifier hover images like the ones I&#8217;m implementing can be a pain in the arse.</p>
<p>To demonstrate the image on the left shows an example screen area of someone who is partially sited navigating the website using a magnification program. They can see the icon but only partially see the description. In the next image the user has moved the mouse to view the description which cause the text to disappear.</p>
<p><img class="alignleft size-full wp-image-74" title="mag1" src="http://dialdfordesign.com/wp-content/uploads/2009/05/mag1.gif" alt="mag1" width="54" height="45" /><img class="alignleft size-full wp-image-75" title="mag2" src="http://dialdfordesign.com/wp-content/uploads/2009/05/mag2.gif" alt="" /></p>
<p>Luckily by happy accident the Eric Meyer&#8217;s <a href="http://meyerweb.com/eric/css/edge/popups/demo2.html" target="_self">CSS method</a> to create  hover buttons provides a solution to this problem. For the pop up to work the text has to be enclosed in the same &lt;a href&gt; tag as the object you are hovering over.  This means the text becomes a link as well and will stay displayed when the mouse is moved over it:</p>
<p><img class="alignleft size-full wp-image-76" title="mag3" src="http://dialdfordesign.com/wp-content/uploads/2009/05/mag3.gif" alt="mag3" width="54" height="45" /></p>
<p>So if you&#8217;re looking to use hover images, drop downs or tool tips have a thought about people using magnication programs and how you your navigation will work for them to.</p>


<p>Related posts:<ol><li><a href='http://dialdfordesign.com/?p=37' rel='bookmark' title='Permanent Link: Applied Design: foxholebank.com &#8211; Paper Prototype'>Applied Design: foxholebank.com &#8211; Paper Prototype</a></li></ol></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/dialdfordesign?a=cpwne8503zo:ZT6ZQ2tIFFk:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/dialdfordesign?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/dialdfordesign?a=cpwne8503zo:ZT6ZQ2tIFFk:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/dialdfordesign?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/dialdfordesign?a=cpwne8503zo:ZT6ZQ2tIFFk:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/dialdfordesign?i=cpwne8503zo:ZT6ZQ2tIFFk:gIN9vFwOqvQ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/dialdfordesign/~4/cpwne8503zo" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://dialdfordesign.com/?feed=rss2&amp;p=71</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<feedburner:origLink>http://dialdfordesign.com/?p=71</feedburner:origLink></item>
		<item>
		<title>Futher Reading 2: Men Need Speed, The 10 Minute Rule and Bye Bye 960px</title>
		<link>http://feedproxy.google.com/~r/dialdfordesign/~3/n8TBFkWS_0g/</link>
		<comments>http://dialdfordesign.com/?p=66#comments</comments>
		<pubDate>Wed, 06 May 2009 19:25:18 +0000</pubDate>
		<dc:creator>Steve</dc:creator>
				<category><![CDATA[Futher Reading]]></category>
		<category><![CDATA[Colour]]></category>
		<category><![CDATA[Resolutions]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Web Optimisation]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://dialdfordesign.com/?p=66</guid>
		<description><![CDATA[
Another fine selection of articles including usability studies, brain rules and whether it&#8217;s time to move onto larger displays.
Men Need Speed by Web Optimization (via Jeffery Zeldman) &#8211; Usability Study
Creating Consistently Colourful User Experiences by Andrew Maier (via Script&#38;Style) &#8211; Tutorial
The Ten Minute Rule by John Medina -  Article
Is It Time To Move Beyond 960? [...]


Related posts:<ol><li><a href='http://dialdfordesign.com/?p=123' rel='bookmark' title='Permanent Link: Futher Reading: free downloads, killer contract &#038; web fonts'>Futher Reading: free downloads, killer contract &#038; web fonts</a></li><li><a href='http://dialdfordesign.com/?p=15' rel='bookmark' title='Permanent Link: Futher Reading 1: More Twitter, Firefox 3.5 and Progressive Enhancement.'>Futher Reading 1: More Twitter, Firefox 3.5 and Progressive Enhancement.</a></li></ol>]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-full wp-image-52" title="dd4dreading" src="http://dialdfordesign.com/wp-content/uploads/2009/04/dd4dreading.jpg" alt="dd4dreading" width="101" height="88" /></p>
<p>Another fine selection of articles including usability studies, brain rules and whether it&#8217;s time to move onto larger displays.</p>
<p><a href="http://www.websiteoptimization.com/speed/tweak/usability-criteria/">Men Need Speed</a> by Web Optimization (via <a href="http://www.zeldman.com/2009/04/28/men-like-it-fast-women-like-it-good-its-the-web/">Jeffery Zeldman</a>) &#8211; <strong>Usability Study</strong></p>
<p><a href="http://www.uxbooth.com/blog/visual-design/creating-consistently-colorful-user-experiences-part-1-theory/">Creating Consistently Colourful User Experiences</a> by Andrew Maier (via <a href="http://scriptandstyle.com/submissions/creating-consistently-colorful-user-experiences-part-1-theory">Script&amp;Style</a>) &#8211; <strong>Tutorial</strong></p>
<p><a href="http://brainrules.blogspot.com/2009/03/10-minute-rule.html">The Ten Minute Rule</a> by John Medina -  <strong>Article</strong></p>
<p><a href="http://cameronmoll.com/archives/2009/04/is_it_time_to_move_beyond_960/">Is It Time To Move Beyond 960?</a> by Cameron Moll -<strong> Article</strong></p>
<p><a href="http://www.smashingmagazine.com/2009/04/29/ultimate-guide-to-using-wordpress-for-a-portfolio/">The Ultimate Guide To Using Wordpress As A Portfolio</a> by Cameron Chapmen &#8211; <strong>Article</strong></p>
<p>Got any suggestions for interesting articles? Let me know by dropping them in the comments! Thanks!</p>


<p>Related posts:<ol><li><a href='http://dialdfordesign.com/?p=123' rel='bookmark' title='Permanent Link: Futher Reading: free downloads, killer contract &#038; web fonts'>Futher Reading: free downloads, killer contract &#038; web fonts</a></li><li><a href='http://dialdfordesign.com/?p=15' rel='bookmark' title='Permanent Link: Futher Reading 1: More Twitter, Firefox 3.5 and Progressive Enhancement.'>Futher Reading 1: More Twitter, Firefox 3.5 and Progressive Enhancement.</a></li></ol></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/dialdfordesign?a=n8TBFkWS_0g:psLUwLj7WUE:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/dialdfordesign?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/dialdfordesign?a=n8TBFkWS_0g:psLUwLj7WUE:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/dialdfordesign?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/dialdfordesign?a=n8TBFkWS_0g:psLUwLj7WUE:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/dialdfordesign?i=n8TBFkWS_0g:psLUwLj7WUE:gIN9vFwOqvQ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/dialdfordesign/~4/n8TBFkWS_0g" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://dialdfordesign.com/?feed=rss2&amp;p=66</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://dialdfordesign.com/?p=66</feedburner:origLink></item>
		<item>
		<title>Brew Time Titbit: What is Doctype?</title>
		<link>http://feedproxy.google.com/~r/dialdfordesign/~3/kCyLN-skZ4A/</link>
		<comments>http://dialdfordesign.com/?p=60#comments</comments>
		<pubDate>Mon, 04 May 2009 11:14:01 +0000</pubDate>
		<dc:creator>Steve</dc:creator>
				<category><![CDATA[Brew Time Titbit]]></category>
		<category><![CDATA[Accesibility]]></category>
		<category><![CDATA[Browsers]]></category>
		<category><![CDATA[Web Design]]></category>

		<guid isPermaLink="false">http://dialdfordesign.com/?p=60</guid>
		<description><![CDATA[
What is doctype?
Doctype basically tells applications like your browser or online code validator what type of markup you&#8217;ve coded the page in. The majority of users will either use HTML or XHTML, Transitional or Strict versions. Transitional is used for old markup which has been coded for older browsers. Strict requires the markup to be [...]


Related posts:<ol><li><a href='http://dialdfordesign.com/?p=153' rel='bookmark' title='Permanent Link: Brew Time Titbit: Layer Tennis. Fancy A Game?'>Brew Time Titbit: Layer Tennis. Fancy A Game?</a></li></ol>]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-full wp-image-58" title="dd4dmug" src="http://dialdfordesign.com/wp-content/uploads/2009/05/dd4dmug.jpg" alt="dd4dmug" width="80" height="74" /></p>
<p><strong>What is doctype?</strong></p>
<p>Doctype basically tells applications like your browser or online code validator what type of markup you&#8217;ve coded the page in. The majority of users will either use HTML or XHTML, Transitional or Strict versions. Transitional is used for old markup which has been coded for older browsers. Strict requires the markup to be well coded and standards compliant moving the page towards working with more browsers and screen readers.</p>
<p><strong>Why do we need it?</strong></p>
<p>If a browser is given a doctype it can interpret the markup you&#8217;ve used to render the page correctly. If it&#8217;s not given a doctype it will try to interpret the markup as best it can and therefor the page may not render correctly. For example: If IE6 isn&#8217;t given a doctype it works in &#8216;quirks&#8217; mode and doesn&#8217;t honour CSS auto margins. If you start designing your pages with XHTML strict in mind you are giving yourself a helping hand to code more elegant, robust and standards compliant markup.</p>
<p><strong>Where can I get it?</strong></p>
<p>To add a doctype to your document it&#8217;s as simple as copy and paste. Below are the doctypes for XHTML transitional and strict. Paste them above your HTML tag in your document:</p>
<pre class="html">&lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
   "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"&gt;

&lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
   "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&gt;</pre>
<p>To view more types of doctype to add to your document check out the <a href="http://www.w3.org/QA/2002/04/valid-dtd-list.html">W3C recommended list of doctypes</a>.</p>
<p>For further reading I recommend:</p>
<p><a href="http://www.d.umn.edu/itss/support/Training/Online/webdesign/css.html#dtd">University of Minnesota Web Design References<br />
</a><a href="http://24ways.org/2005/transitional-vs-strict-markup">Transitional vs Strict Markup</a> by Roger Johansson<a href="http://www.d.umn.edu/itss/support/Training/Online/webdesign/css.html#dtd"><br />
</a><a href="http://www.alistapart.com/articles/doctype/">Fix your site with the right DOCTYPE!</a> by Jeffery Zeldman</p>
<p>If you found this helpful <a href="http://dialdfordesign.com/?feed=rss2">add me to your RSS</a> reader! Thanks.</p>


<p>Related posts:<ol><li><a href='http://dialdfordesign.com/?p=153' rel='bookmark' title='Permanent Link: Brew Time Titbit: Layer Tennis. Fancy A Game?'>Brew Time Titbit: Layer Tennis. Fancy A Game?</a></li></ol></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/dialdfordesign?a=kCyLN-skZ4A:gI6uvwsKML0:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/dialdfordesign?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/dialdfordesign?a=kCyLN-skZ4A:gI6uvwsKML0:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/dialdfordesign?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/dialdfordesign?a=kCyLN-skZ4A:gI6uvwsKML0:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/dialdfordesign?i=kCyLN-skZ4A:gI6uvwsKML0:gIN9vFwOqvQ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/dialdfordesign/~4/kCyLN-skZ4A" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://dialdfordesign.com/?feed=rss2&amp;p=60</wfw:commentRss>
		<slash:comments>3</slash:comments>
		<feedburner:origLink>http://dialdfordesign.com/?p=60</feedburner:origLink></item>
	</channel>
</rss>
