<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="wordpress/2.2.2" -->
<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/"
	>

<channel>
	<title>stevenclark.com.au</title>
	<link>http://stevenclark.com.au</link>
	<description></description>
	<pubDate>Wed, 02 Jul 2008 23:03:41 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.2.2</generator>
	<language>en</language>
			<item>
		<title>Containing Floats (Redux)</title>
		<link>http://stevenclark.com.au/2008/07/03/containing-floats-without-adding-structure-redux/</link>
		<comments>http://stevenclark.com.au/2008/07/03/containing-floats-without-adding-structure-redux/#comments</comments>
		<pubDate>Wed, 02 Jul 2008 22:30:41 +0000</pubDate>
		<dc:creator>steven</dc:creator>
		
		<category><![CDATA[css]]></category>

		<category><![CDATA[web standards]]></category>

		<guid isPermaLink="false">http://stevenclark.com.au/2008/07/03/containing-floats-without-adding-structure-redux/</guid>
		<description><![CDATA[Nothing about this post is new or unknown to many people much smarter than myself. I don&#8217;t usually post CSS solutions here because there are fantastic resources out there already. This CSS problem is simple - an outer div contains floats. The floats pop out the bottom of the div and this is shown best [...]]]></description>
			<content:encoded><![CDATA[<p>Nothing about this post is new or unknown to many people much smarter than myself. I don&#8217;t usually post <acronym title="Cascading Stylesheets">CSS</acronym> solutions here because there are fantastic resources out there already. This <acronym title="Cascading Stylesheets">CSS</acronym> problem is simple - an outer div contains floats. The floats pop out the bottom of the div and this is shown best by putting a simple border on the div to show its got no height. This is exactly what&#8217;s meant to happen. Although, in Internet Explorer the float is contained.</p>
<p>But if we&#8217;ve got a situation where we want floated content to stay wrapped within the div what do we do?</p>
<p><img src="http://stevenclark.com.au/wp-content/uploads/2008/02/floatproblem.gif" alt="Problem: Uncontained float is not inside the div" title="Problem: Uncontained float is not inside the div" class="lightimage" /></p>
<p> <a href="http://stevenclark.com.au/2008/07/03/containing-floats-without-adding-structure-redux/#more-648" class="more-link">(more&#8230;)</a></p>
]]></content:encoded>
			<wfw:commentRss>http://stevenclark.com.au/2008/07/03/containing-floats-without-adding-structure-redux/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Title Attributes on Links, Tooltips and Accessibility</title>
		<link>http://stevenclark.com.au/2008/06/30/title-attributes-on-links-tooltips-and-accessibility/</link>
		<comments>http://stevenclark.com.au/2008/06/30/title-attributes-on-links-tooltips-and-accessibility/#comments</comments>
		<pubDate>Mon, 30 Jun 2008 07:19:23 +0000</pubDate>
		<dc:creator>steven</dc:creator>
		
		<category><![CDATA[usability]]></category>

		<category><![CDATA[accessibility]]></category>

		<category><![CDATA[web standards]]></category>

		<guid isPermaLink="false">http://stevenclark.com.au/2008/06/30/title-attributes-on-links-tooltips-and-accessibility/</guid>
		<description><![CDATA[In a recent article, How to Make Accessible Image Links (Redux), the subject of real world implementation of the title attribute also became a topic worth taking a little further. While there are some very good resources out there explaining the pros and cons of title attributes, it still seems worthwhile recapping and bringing some [...]]]></description>
			<content:encoded><![CDATA[<p>In a recent article, <a href="http://stevenclark.com.au/2008/06/28/how-to-make-accessible-image-links-redux/">How to Make Accessible Image Links (Redux)</a>, the subject of real world implementation of the title attribute also became a topic worth taking a little further. While there are some very good resources out there explaining the pros and cons of title attributes, it still seems worthwhile recapping and bringing some of that external information into one place. This article will be aimed at discussing title attributes on links. The title attribute can be used on nearly every element and is even compulsory on several (including frames oink!). Did I just say oink? Frames. Oink?</p>
<h3>The Title Attribute</h3>
<p>The title attribute (not to be confused with the title element in your document head) is available to provide supplementary <del>implementation</del> information to users, although without a solid guide to user agents on how to implement the title there is an inconsistency among browsers as to how they support it. In some cases the title may be provided as a tool tip, although this would require the user to hover over the element with a pointing device. Keyboard users wouldn&#8217;t see the tooltip, while screen readers have title attributes turned off by default and users have to turn that feature on.</p>
<p> <a href="http://stevenclark.com.au/2008/06/30/title-attributes-on-links-tooltips-and-accessibility/#more-647" class="more-link">(more&#8230;)</a></p>
]]></content:encoded>
			<wfw:commentRss>http://stevenclark.com.au/2008/06/30/title-attributes-on-links-tooltips-and-accessibility/feed/</wfw:commentRss>
		</item>
		<item>
		<title>How to Make Accessible Image Links (Redux)</title>
		<link>http://stevenclark.com.au/2008/06/28/how-to-make-accessible-image-links-redux/</link>
		<comments>http://stevenclark.com.au/2008/06/28/how-to-make-accessible-image-links-redux/#comments</comments>
		<pubDate>Sat, 28 Jun 2008 04:54:52 +0000</pubDate>
		<dc:creator>steven</dc:creator>
		
		<category><![CDATA[accessibility]]></category>

		<guid isPermaLink="false">http://stevenclark.com.au/2008/06/28/how-to-make-accessible-image-links-redux/</guid>
		<description><![CDATA[The accessibility of image content on a website is a crucial part of best practice web design. When we think of accessibility the first thought in our head would generally be the translation of visual content into non-visual content. WCAG 1.0 Checkpoint 1.1 affirms that we need to provide a text equivalent for all non-text [...]]]></description>
			<content:encoded><![CDATA[<p>The accessibility of image content on a website is a crucial part of best practice web design. When we think of accessibility the first thought in our head would generally be the translation of visual content into non-visual content. <acronym title="Web Content Accessiblity Guidelines">WCAG</acronym> 1.0 <a href="http://www.w3.org/TR/WCAG10/wai-pageauth.html#tech-text-equivalent">Checkpoint 1.1</a> affirms that we need to provide a text equivalent for all non-text content (via alt or longdesc attributes). Similarly, the <a href="http://www.w3.org/TR/WCAG20/">WCAG 2.0</a> Candidate Recommendation&#8217;s <a href="http://www.w3.org/TR/2008/WD-UNDERSTANDING-WCAG20-20080430/text-equiv-all.html">Success Criteria 1.1.1</a> implores that, bar several exceptions, all non-text content that is presented to the user has a text alternative that serves the equivalent purpose. Without a doubt, the accessiblity of non-visual content is a primary concern for website accessibility.</p>
<p>Two very good articles on WebAIM, the first <a href="http://webaim.org/blog/alt-text-and-linked-images/">Alt text and linked images</a> and <a href="http://webaim.org/techniques/alttext/">Appropriate Use of Alternative Text</a>, provide a strong basis for creating accessible image links. Basically, whenever you use an image as the only content within a link you need to provide a text equivalent of the function of the link. The alt attribute should be used to show the function of the link (rather than a description of the image).</p>
<p>Like many people, it appears that I had made some wrong assumptions in the past about the correct way to mark up images as links. In my old scenario I was marking up a title on the surrounding link element while providing alternate text to describe the image. The reality is that screen readers ignore that title attribute on the link and, as Jared points out in one comment the title is only intended to be supplementary information anyway. So, naturally, using the link&#8217;s title isn&#8217;t enough.</p>
<p> <a href="http://stevenclark.com.au/2008/06/28/how-to-make-accessible-image-links-redux/#more-646" class="more-link">(more&#8230;)</a></p>
]]></content:encoded>
			<wfw:commentRss>http://stevenclark.com.au/2008/06/28/how-to-make-accessible-image-links-redux/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Freelance or a Second Contract?</title>
		<link>http://stevenclark.com.au/2008/06/26/freelance-or-a-second-contract/</link>
		<comments>http://stevenclark.com.au/2008/06/26/freelance-or-a-second-contract/#comments</comments>
		<pubDate>Thu, 26 Jun 2008 10:28:08 +0000</pubDate>
		<dc:creator>steven</dc:creator>
		
		<category><![CDATA[general]]></category>

		<guid isPermaLink="false">http://stevenclark.com.au/2008/06/26/freelance-or-a-second-contract/</guid>
		<description><![CDATA[As one of those people who seems to always be doing something - read, study, projects, freelance and contracts, etc - I&#8217;ve been very lucky to have a disability pension as a backstop. If it weren&#8217;t for the Pensioner Education Supplement I would still be that bogun chucking fish down the wharf in sixteen to [...]]]></description>
			<content:encoded><![CDATA[<p>As one of those people who seems to always be doing something - read, study, projects, freelance and contracts, etc - I&#8217;ve been very lucky to have a disability pension as a backstop. If it weren&#8217;t for the Pensioner Education Supplement I would still be that bogun chucking fish down the wharf in sixteen to twenty hour irregular shifts. There&#8217;s something incredibly wrong when you&#8217;re stuck in the socio-economic poverty trap that pits your back against younger footballers just to afford a few steaks and a beer.</p>
<p>Since mid-2001 I&#8217;ve done a serious <a href="http://stevenclark.com.au/school/">shit-load of schooling</a>, too. I&#8217;ve done industry level certification in Web Design and Web Administration and I&#8217;ve made the Dean&#8217;s Honour Roll of Excellence for my Faculty through a Bachelor of Computing. I have only one project unit left at University to achieve my undergraduate degree. At the same time I&#8217;ve taught myself best practice front end web development methodologies (started with an Idiot&#8217;s Guide to Creating a Web Page, no less). I&#8217;ve spent long hours researching issues such as accessibility and usability, pushed my boundaries into working with PHP, and blogged like a mad banshee into the wee bloody hours. It was to prove a point - I am better than that man who stood on the wharf at 4am in silky fish soaked boxers totally exhausted (and exploited).</p>
<p> <a href="http://stevenclark.com.au/2008/06/26/freelance-or-a-second-contract/#more-645" class="more-link">(more&#8230;)</a></p>
]]></content:encoded>
			<wfw:commentRss>http://stevenclark.com.au/2008/06/26/freelance-or-a-second-contract/feed/</wfw:commentRss>
		</item>
		<item>
		<title>How Long is your IE Stylesheet?</title>
		<link>http://stevenclark.com.au/2008/06/24/how-long-is-your-ie-stylesheet/</link>
		<comments>http://stevenclark.com.au/2008/06/24/how-long-is-your-ie-stylesheet/#comments</comments>
		<pubDate>Tue, 24 Jun 2008 10:24:25 +0000</pubDate>
		<dc:creator>steven</dc:creator>
		
		<category><![CDATA[css]]></category>

		<category><![CDATA[web standards]]></category>

		<guid isPermaLink="false">http://stevenclark.com.au/2008/06/24/how-long-is-your-ie-stylesheet/</guid>
		<description><![CDATA[Here&#8217;s an interesting question. I guess we&#8217;ve all got different tolerance levels and methodologies based around Internet Explorer - sheer economics precludes a full day&#8217;s investigation of every cross browser issue for some businesses. So how many lines does your current IE stylesheet have?
For anyone who doesn&#8217;t know what I&#8217;m alluding to, its when we use [...]]]></description>
			<content:encoded><![CDATA[<p>Here&#8217;s an interesting question. I guess we&#8217;ve all got different tolerance levels and methodologies based around Internet Explorer - sheer economics precludes a full day&#8217;s investigation of every cross browser issue for some businesses. So how many lines does your current IE stylesheet have?</p>
<p>For anyone who doesn&#8217;t know what I&#8217;m alluding to, its when we use <a href="http://www.quirksmode.org/css/condcom.html">conditional comments</a> to target Internet Explorer (either en-masse or by version) to fix those lovely little anomolies we&#8217;ve grown to love in our own special industry fashion. Using conditional comments is a far superior way to dealing with these bugs than the dark and soul-degrading option of <a href="http://css-discuss.incutio.com/?page=CssHack">CSS Hacks</a>. IE7 saw a few CSS Hacks come back to bite high profile standardistas when sites suddenly fell apart because several exploited browser bugs were fixed.</p>
<p>So how many lines are in your IE stylesheets? For example, on this site, although admittedly its a reasonably simple layout, my current IE6.css file has 14 lines of which 8 are <a href="http://css.maxdesign.com.au/selectutorial/">selectors and declarations</a>. The likely suspects in my IE6.css file use width, padding and a font-size for code. I&#8217;m of the mind to use this stylesheet sparingly after all measure of enquiry (or a sudden time crisis) has led me to no other alternative. I also only place the very exact rule that needs to go into that IE6 fix. As yet I haven&#8217;t had to utilise an IE7.css file.</p>
<p> <a href="http://stevenclark.com.au/2008/06/24/how-long-is-your-ie-stylesheet/#more-644" class="more-link">(more&#8230;)</a></p>
]]></content:encoded>
			<wfw:commentRss>http://stevenclark.com.au/2008/06/24/how-long-is-your-ie-stylesheet/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Boag Vs Rissington (a Web Somme in Jelly)</title>
		<link>http://stevenclark.com.au/2008/06/23/boag-vs-rissington-a-web-somme-in-jelly/</link>
		<comments>http://stevenclark.com.au/2008/06/23/boag-vs-rissington-a-web-somme-in-jelly/#comments</comments>
		<pubDate>Mon, 23 Jun 2008 10:25:05 +0000</pubDate>
		<dc:creator>steven</dc:creator>
		
		<category><![CDATA[humour]]></category>

		<category><![CDATA[web standards]]></category>

		<guid isPermaLink="false">http://stevenclark.com.au/2008/06/23/boag-vs-rissington-a-web-somme-in-jelly/</guid>
		<description><![CDATA[As a prolific podcast listener I&#8217;d have to ask myself (and others) who the winner would be in a jelly wrestle between The Rissington Podcast and the Boagworld Podcast? We&#8217;ll call this the battle of the Web Somme; an in the trenches pitched assault whose first sortie took down the Boagworld (Boagworld, World of Boag) [...]]]></description>
			<content:encoded><![CDATA[<p>As a prolific podcast listener I&#8217;d have to ask myself (and others) who the winner would be in a jelly wrestle between <a href="http://therissingtonpodcast.co.uk/">The Rissington Podcast</a> and the <a href="http://boagworld.com/podcast/122/">Boagworld Podcast</a>? We&#8217;ll call this the battle of the Web Somme; an in the trenches pitched assault whose first sortie took down the Boagworld (Boagworld, World of Boag) interlude. Bloody nice shooting, wot! Although I kind of miss it Paul, bring it back.</p>
<p>As a colonial its important to weigh up the two opponents before placing my 20 cent bet. In the Blue Corner sit <a href="http://headscape.co.uk/people/boag.html">Paul Boag</a> and his straightman <a href="http://headscape.co.uk/people/lillington.html">Marcus Lillington</a> (of <a href="http://headscape.co.uk/">Headscape</a>) - try to picture Batman and Robin without the gay costumes. They&#8217;ve pummelled out 122 episodes of highly informative web standards lacrosse. Their army of loyal devotees worship DOCTYPE as God and are willing to suffer minor abrasions in a quirky suburban English manner - with humour and a hard cup of tea.</p>
<p>In the skies Paul and Marcus would be the aces defending a very British Tradition of the BBC and Thames Television logos. Hand to hand I think they&#8217;d be a solid pair of knobbly fellas willing to break a hatstand or two. Seriously. Maybe even a pint glass.</p>
<p> <a href="http://stevenclark.com.au/2008/06/23/boag-vs-rissington-a-web-somme-in-jelly/#more-642" class="more-link">(more&#8230;)</a></p>
]]></content:encoded>
			<wfw:commentRss>http://stevenclark.com.au/2008/06/23/boag-vs-rissington-a-web-somme-in-jelly/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Why I Dislike Flash Banners</title>
		<link>http://stevenclark.com.au/2008/06/23/why-i-dislike-flash-banners/</link>
		<comments>http://stevenclark.com.au/2008/06/23/why-i-dislike-flash-banners/#comments</comments>
		<pubDate>Sun, 22 Jun 2008 22:13:08 +0000</pubDate>
		<dc:creator>steven</dc:creator>
		
		<category><![CDATA[usability]]></category>

		<guid isPermaLink="false">http://stevenclark.com.au/2008/06/23/why-i-dislike-flash-banners-that-loop/</guid>
		<description><![CDATA[Having a strong visual design is a critical element in developing interfaces which engage human beings. We make assumptions on a website&#8217;s credibility, quality and level of trust based on the initial first few seconds when the page loads in our browser. Ultimately we live in such a complicated world that through our animal evolution [...]]]></description>
			<content:encoded><![CDATA[<p>Having a strong visual design is a critical element in developing interfaces which engage human beings. We make assumptions on a website&#8217;s credibility, quality and level of trust based on the initial first few seconds when the page loads in our browser. Ultimately we live in such a complicated world that through our animal evolution to this point in time (way before the World Wide Web) we developed the ability to make quick <a href="http://en.wikipedia.org/wiki/Satisficing">satisficing decisions</a> based, to a great degree, on superficial grounds. Or you could just say we&#8217;re shallow and quick to pass judgement. Nevertheless, this is a survival skill that saved us from being eaten by large gnarley animals with hungry bellies and smaller brains.</p>
<p>Understanding how humans sort through a complex world of sensory input, and how we make these quick perceptive decisions, allows us to accept that visual design can go overboard in various little ways that affect the users ability to focus on content or utilise the information we&#8217;ve provided. In a signal versus noise landscape we definately don&#8217;t want to introduce noise into the visual design.</p>
<p> <a href="http://stevenclark.com.au/2008/06/23/why-i-dislike-flash-banners/#more-638" class="more-link">(more&#8230;)</a></p>
]]></content:encoded>
			<wfw:commentRss>http://stevenclark.com.au/2008/06/23/why-i-dislike-flash-banners/feed/</wfw:commentRss>
		</item>
		<item>
		<title>CMS Grafitti Can Be Reduced</title>
		<link>http://stevenclark.com.au/2008/06/21/cms-grafitti-can-be/</link>
		<comments>http://stevenclark.com.au/2008/06/21/cms-grafitti-can-be/#comments</comments>
		<pubDate>Sat, 21 Jun 2008 04:49:15 +0000</pubDate>
		<dc:creator>steven</dc:creator>
		
		<category><![CDATA[business]]></category>

		<category><![CDATA[web standards]]></category>

		<guid isPermaLink="false">http://stevenclark.com.au/2008/06/21/cms-grafitti-can-be/</guid>
		<description><![CDATA[Over the last few years I&#8217;ve done a lot of tedious QA (Quality Assurance) which involves poring over front end markup (developer code) and through content written by untrained authors (Corporate Grafitti artists) in any given CMS (Content Management System). In some ways I don&#8217;t mind being the one who does QA because I&#8217;m a [...]]]></description>
			<content:encoded><![CDATA[<p>Over the last few years I&#8217;ve done a lot of tedious QA (Quality Assurance) which involves poring over front end markup (developer code) and through content written by untrained authors (Corporate Grafitti artists) in any given CMS (Content Management System). In some ways I don&#8217;t mind being the one who does QA because I&#8217;m a meticulous bastard with no quarter given to the repetitive slugs and slights actioned by less than perfect humans against the <acronym title="World Wide Web Consortium">W3C</acronym> specifications. There&#8217;s something geekily satisfying about bringing order to the chaos that reminds me of doing crossword puzzles. QA is a simple process of finding and fixing stuff page by page and line by line.</p>
<h3>The Developers</h3>
<p>The first problem area of QA - the developers themselves - can always be improved over time. Every project teaches new tricks and techniques so by the time you&#8217;re doing QA its probably quite an old site, or a migration over to a new CMS. I&#8217;d recommend you note and advise as unobtrusively as possible - from a huddled corner behind the water cooler - that there might be more effective ways to skin that cat. Semantics, for example, seems to be a curve rather than a binary step. I&#8217;ve learned the hard way over time to appreciate and acknowledge the good factors as well - so don&#8217;t just say the code is shit and storm out of the room.</p>
<p> <a href="http://stevenclark.com.au/2008/06/21/cms-grafitti-can-be/#more-641" class="more-link">(more&#8230;)</a></p>
]]></content:encoded>
			<wfw:commentRss>http://stevenclark.com.au/2008/06/21/cms-grafitti-can-be/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Red Herring Phenomenon</title>
		<link>http://stevenclark.com.au/2008/06/20/red-herring-phenomenon/</link>
		<comments>http://stevenclark.com.au/2008/06/20/red-herring-phenomenon/#comments</comments>
		<pubDate>Fri, 20 Jun 2008 06:52:31 +0000</pubDate>
		<dc:creator>steven</dc:creator>
		
		<category><![CDATA[business]]></category>

		<category><![CDATA[design]]></category>

		<guid isPermaLink="false">http://stevenclark.com.au/2008/06/20/red-herring-phenomenon/</guid>
		<description><![CDATA[Reading Khoi Vinh&#8217;s Lost in Spacing, it struck me that the red herring phenomenon he mentioned seems to be a treadmill I continuously re-experience. The article discussed Khoi&#8217;s recent experience playing around with white space on user interface design and particularly the negativity that arose from improving vertical space in an email client interface. The [...]]]></description>
			<content:encoded><![CDATA[<p>Reading Khoi Vinh&#8217;s <a href="http://www.subtraction.com/archives/2008/0618_lost_in_spac.php">Lost in Spacing</a>, it struck me that the red herring phenomenon he mentioned seems to be a treadmill I continuously re-experience. The article discussed Khoi&#8217;s recent experience playing around with white space on user interface design and particularly the negativity that arose from improving vertical space in an email client interface. The red herring phenomenon, as nearly all of us will have experienced it at a raw moment of our career, is when you show a mockup or an idea or some prototyped element of design to your boss, co-worker or associate. The result is they focus on a small off-the-radar part you weren&#8217;t really intending to put out there. You&#8217;re saying &#8220;hey check out my X&#8221; and they&#8217;re saying &#8220;but your Y is out of focus&#8221;. Something like that.</p>
<p>Recent examples of the red herring phenomenon in my recent past are always sore points to the ego. On a web page enhancement, for example, I had to create some backgrounds behind a set of four H3 headings, each of a different colour and with a rounded right hand corner. I put in a soft gradient for effect and had not bothered to change the text from #666 (quite blackish but not black) to anything especially relevant. My world view was - hey what do you think of that background and gradient? What about those four colours? The red herring reply was the #666 on that H3 needs to be white, something that wasn&#8217;t meant to be up for question.</p>
<p> <a href="http://stevenclark.com.au/2008/06/20/red-herring-phenomenon/#more-640" class="more-link">(more&#8230;)</a></p>
]]></content:encoded>
			<wfw:commentRss>http://stevenclark.com.au/2008/06/20/red-herring-phenomenon/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Links and Affordance within a Design</title>
		<link>http://stevenclark.com.au/2008/06/18/links-and-affordance-within-a-design/</link>
		<comments>http://stevenclark.com.au/2008/06/18/links-and-affordance-within-a-design/#comments</comments>
		<pubDate>Wed, 18 Jun 2008 12:27:57 +0000</pubDate>
		<dc:creator>steven</dc:creator>
		
		<category><![CDATA[usability]]></category>

		<category><![CDATA[accessibility]]></category>

		<category><![CDATA[design]]></category>

		<category><![CDATA[programming]]></category>

		<guid isPermaLink="false">http://stevenclark.com.au/2008/06/18/links-and-affordance-within-a-design/</guid>
		<description><![CDATA[When you approach a door, the available door handle that allows you to pass through usually has an affordance that tells the user this is a tool that turns, switches or presses forward (depending on the door). How do you cope when you approach a set of glass doors where only certain sections open and [...]]]></description>
			<content:encoded><![CDATA[<p>When you approach a door, the available door handle that allows you to pass through usually has an <a href="http://www.usabilityfirst.com/glossary/term_66.txl">affordance</a> that tells the user this is a tool that turns, switches or presses forward (depending on the door). How do you cope when you approach a set of glass doors where only certain sections open and close and there are no obvious signals or markers that afford entry? You get confused, right? We use doors every day of all shapes and sizes but they&#8217;re not all the same. And most doors work perfectly well because they have the affordance to us of being a door. They look like a door and act like a door.</p>
<p>On the other hand our electronic dishwasher, video player or mobile phone generally lack a lot of the affordance they should have. We complain about them constantly - manuals written in Korean are testament to the issue. Please don&#8217;t deny there&#8217;s a problem with the 1001 inventive interfaces to programming a television.</p>
<p>Web design requires the same attention to affordance. Something that&#8217;s a link needs to have the affordance of a link, for example. Cool is alright but if you went to work tomorrow and designed a cool door for your office which lacked affordance you might get some complaints - suddenly you have an office that&#8217;s got usability and accessibility issues! People can&#8217;t find the way in to see you and those who find the handle try to turn it when the knob needs pulling towards them. For no apparent reason they find themselves locked out of your office. While, of course, it works perfectly well for you because you know the secret behind that lack of affordance. This is the crux of usability and accessibility in real world web design.</p>
<p> <a href="http://stevenclark.com.au/2008/06/18/links-and-affordance-within-a-design/#more-637" class="more-link">(more&#8230;)</a></p>
]]></content:encoded>
			<wfw:commentRss>http://stevenclark.com.au/2008/06/18/links-and-affordance-within-a-design/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
