<?xml version="1.0" encoding="UTF-8"?> <rss
version="2.0"
xmlns:content="http://purl.org/rss/1.0/modules/content/"
xmlns:wfw="http://wellformedweb.org/CommentAPI/"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:atom="http://www.w3.org/2005/Atom"
xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
><channel><title>Webdesigner Depot &#187; Usability</title> <atom:link href="http://www.webdesignerdepot.com/category/usability/feed/" rel="self" type="application/rss+xml" /><link>http://www.webdesignerdepot.com</link> <description>Web Design Resources and Tutorials</description> <lastBuildDate>Fri, 10 Feb 2012 09:48:34 +0000</lastBuildDate> <language>en</language> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <generator>http://wordpress.org/?v=abc</generator> <item><title>How to tame forms in web design</title><link>http://www.webdesignerdepot.com/2011/08/how-to-tame-forms-in-web-design/</link> <comments>http://www.webdesignerdepot.com/2011/08/how-to-tame-forms-in-web-design/#comments</comments> <pubDate>Wed, 10 Aug 2011 09:10:51 +0000</pubDate> <dc:creator>Walter</dc:creator> <category><![CDATA[Forms]]></category> <category><![CDATA[How to]]></category> <category><![CDATA[Usability]]></category> <category><![CDATA[forms]]></category> <category><![CDATA[how to design forms]]></category> <category><![CDATA[html forms]]></category> <category><![CDATA[jquery forms]]></category> <category><![CDATA[Web Design]]></category><guid
isPermaLink="false">http://www.webdesignerdepot.com/?p=24460</guid> <description><![CDATA[Forms are often considered one of the most painful HTML elements to program. But form design and development has progressed by leaps and bounds; it is not nearly as hard as it once was. That being said, while the industry has made tremendous progress, some hurdles are still in place. In the end, taming forms [...]]]></description> <content:encoded><![CDATA[<p><img
class="alignleft" src="http://netdna.webdesignerdepot.com/uploads/forms/200x160.jpg" alt="" width="200" height="160" />Forms are often considered one of the most painful HTML elements to  program. But form design and development has progressed by leaps and  bounds; it is not nearly as hard as it once was.</p><p>That being said, while the industry  has made tremendous progress, some hurdles are still in place. In the  end, taming forms is possible; it just takes some work.</p><p>In this post, we&#8217;ll take a look at some of the most used form controls and at different tools and plugins that should help you with the deployment of forms in your websites.</p><p>If you have any other tips or links to other useful resources, feel free to post them in the comments.<span
id="more-24460"></span></p><h1>Breaking down the controls</h1><p>Let’s start by dividing them into two buckets, because some form controls have never been much trouble to work with.</p><h2>Friendly controls</h2><p>The controls that are easiest to work with are the basic input box,  text area and button. They work well with standard CSS and, fortunately,  are the most common form elements. If you don’t need to use the more  difficult ones, then you’re lucky.</p><p>With the progress of CSS3 rounded corners, drop shadows and  gradients, many of the most common styles are now even easier. You have  nothing to fear with these controls.</p><h2>Troublesome controls</h2><p>Certain other form controls can be a massive pain in the neck. For  example, if you design a drop-down control that is extremely stylized,  the developer will likely want to have a chat with you. Your options for  styling will be quite constrained: border color, padding, background  color, that sort of thing. If you need more styling than this, I suggest  you consult with the developer to ensure you’re not creating a major  problem for them.</p><p>Troublesome form controls include:</p><ul
class="tight_list"><li><em>select multiple,</em></li><li><em>select drop-down,</em></li><li><em>checkboxes,</em></li><li><em>radio buttons,</em></li><li><em>file upload.</em></li></ul><p><br
class="spacer_" /></p><h1>Modern tools for forms</h1><p>As mentioned, a number of incredible tools are available to help you whip form controls into shape.</p><p><a
href="http://formalize.me/">Formalize</a> is your secret weapon  for getting basic form controls and styles to behave consistently across  browsers. And its default styles are clean and beautiful. This awesome  library also works perfectly with a wide range of JavaScript libraries,  such as <a
href="http://jquery.com/">jQuery</a>, <a
href="http://dojotoolkit.org/">Dojo</a> and <a
href="http://mootools.net/">MooTools</a>.</p><p><a
href="http://formalize.me/"><img
src="http://netdna.webdesignerdepot.com/uploads/forms/17.png" alt="" width="460" height="229" /></a></p><p><br
class="spacer_" /></p><h1>Form control replacement</h1><p>If you want to do some radical things to a form, helpful tools are  available. A brilliant tactic for taming web forms is to hide the actual  control and replace it entirely with a manufactured one. This gives you  far greater control over how the form renders.</p><p>One great example of this is <a
href="http://uniformjs.com/">Uniform</a>,  a jQuery plug-in for creating slick forms. It comes in three different  themes. And if you want to create a custom theme, just use the service’s <a
href="http://uniformjs.com/themer.html">CSS generator</a> to easily skin the plug-in.</p><p><a
href="http://uniformjs.com/"><img
class="image-border" src="http://netdna.webdesignerdepot.com/uploads/forms/18.png" alt="" width="497" height="310" /></a></p><p>Another jQuery plug-in <a
href="http://www.emblematiq.com/lab/niceforms/">Niceforms</a>.  While it doesn’t have the handy re-skinning functionality of Uniform,  it does offer a basic style that could very well fit your needs as is.</p><p><a
href="http://www.emblematiq.com/lab/niceforms/"><img
src="http://netdna.webdesignerdepot.com/uploads/forms/19.png" alt="" width="615" height="709" /></a></p><p>Finally, there is the commercial jQuery extension <a
href="http://wijmo.com/">Wijmo</a>. The module we’re interested in here is the <a
href="http://wijmo.com/widgets/wijmo-open/form-decorator/">form decorator</a>,  which is actually free to use. It tackles a few of the more problematic  controls: checkboxes, radio buttons and drop-downs. Being part of a  larger commercial library, this tool brings some benefits, the foremost  of which are strong <a
href="http://wijmo.com/wiki/">documentation</a> and paid <a
href="http://wijmo.com/support/">support</a>. Finally, I love the way it handles skinning; it uses the <a
href="http://jqueryui.com/themeroller/">jQuery UI ThemeRoller</a>, making easy work of custom designs.</p><p><a
href="http://wijmo.com/widgets/wijmo-open/form-decorator/"><img
class="image-border" src="http://netdna.webdesignerdepot.com/uploads/forms/20.png" alt="" width="615" height="593" /></a></p><p><br
class="spacer_" /></p><h1>Invented form controls</h1><p>Finally, if there isn’t a form control that does what you need, you  could invent one! Some very smart people have already done a lot of  this, and perhaps one of their tools already fits your needs.</p><h2>Sliders</h2><p>One thing that is missing from standard HTML (but is a part of HTML5)  is a basic slider control. There are many answers to this, including <a
href="http://wijmo.com/widgets/wijmo-open/slider/">one from Wijmo</a>, which is based on the <a
href="http://jqueryui.com/demos/slider/">jQuery UI slider</a>.</p><p><a
href="http://jqueryui.com/demos/slider/"><img
src="http://netdna.webdesignerdepot.com/uploads/forms/21.png" alt="" width="514" height="52" /></a></p><h2>Uploaders</h2><p>While you could use the file input control to enable users to select a  file for uploading, you might want something a bit snazzier, especially  if file uploads are critical to your website. One of the best solutions  is <a
href="http://www.uploadify.com/">Uploadify</a>. It allows users to select multiple files and to view progress. It comes with a variety of layout and functionality options.</p><p><a
href="http://www.uploadify.com/"><img
src="http://netdna.webdesignerdepot.com/uploads/forms/22.png" alt="" width="615" height="189" /></a></p><h2>Slider-style checkboxes and radio buttons</h2><p>One popular UI element (thanks to the iPhone) is the on/off switch that slides from side to side. With <a
href="http://widowmaker.kiev.ua/checkbox/">this handy jQuery plug-in</a>,  you can transform a basic checkbox or radio button into one. Whether  you call this an invented form control or a form replacement tool, it is  a great way to enable users to turn options on and off.</p><p><a
href="http://widowmaker.kiev.ua/checkbox/"><img
src="http://netdna.webdesignerdepot.com/uploads/forms/23.png" alt="" width="291" height="129" /></a></p><h2>Creative buttons</h2><p><a
href="http://jqueryui.com/">jQuery UI</a> is another interesting take on basic controls. What it labels as <a
href="http://jqueryui.com/demos/button/">buttons</a> could also be used to make option sets based on buttons, radio buttons  and checkboxes. In doing so, you transform these controls into a  different visual form. In the image below is a set of radio buttons  styled as a row of buttons.</p><p><a
href="http://jqueryui.com/demos/button/"><img
class="image-border" src="http://netdna.webdesignerdepot.com/uploads/forms/24.png" alt="" width="615" height="244" /></a></p><p><br
class="spacer_" /></p><h1>HTML5 Forms</h1><p>HTML5 has brought a lot exciting possibilities to web forms. While it  is beyond the scope of this article, it’s still relevant. Here are some  key resources to help you dig in:</p><ul
class="tight_list"><li>“<a
href="http://diveintohtml5.org/forms.html">A Form of Madness</a>,” Dive Into HTML5;</li><li>“<a
href="http://thinkvitamin.com/code/fun-with-html5-forms/">Fun With HTML5 Forms</a>,” Richard Shepherd;</li><li>“<a
href="http://wufoo.com/html5/">HTML5 Forms</a>,” Wufoo;</li><li>“<a
href="http://24ways.org/2009/have-a-field-day-with-html5-forms">Have a Field Day With HTML5 Forms</a>,” Inayaili de León.</li></ul><p>In conclusion, form controls are one of the most critical hurdles in developing a  basic website.</p><p>A designer who understands the limitations, knows the  tools and recognizes opportunities for easy tweaks will be able to make  informed decisions that ultimately improve the bottom line.</p><p><br
class="spacer_" /></p><p><em>Written by <a
href="http://pmcneil.com/">Patrick McNeil</a>,  a freelance writer,  developer and designer. In particular he loves to write about web  design, train people in web development and build websites. Patrick’s  passion for web design trends and patterns can be found in his books on <a
href="http://thewebdesignersideabook.com/">TheWebDesignersIdeaBook.com</a>. Follow Patrick on Twitter <a
href="http://twitter.com/#%21/designmeltdown/">@designmeltdown</a>.</em></p><p><br/><br
/><table
width="100%" style="border-top:1px solid #d7d7d7; border-bottom:1px solid #d7d7d7;" height="20"><tr><td
valign="center"> <a
href="http://www.mightydeals.com/deal/wpbusinessbundle.html?ref=inwidget"><font
face="Arial" size="3" color="#e64f32"><b>Never Ending WordPress Business Bundle &#8211; only $14!</b></font></a></td><td
width="90"> <a
href="http://www.mightydeals.com/?ref=inwidget"><br
/> <img
src="http://mightydeals.com/web/images/widget-logo.png" height="40" width="90" border="0"  /><br
/> </a></td></tr></table><p><br/></p> <a
href="http://www.webdesignerdepot.com/2011/08/how-to-tame-forms-in-web-design/">Source</a><style type="text/css">
 p img {display:inline-block; margin-right:10px;}
.alignleft {float:left;}
p.showcase {clear:both;}
body#browserfriendly p, body#podcast p, div#emailbody p{margin:0;}
</style>]]></content:encoded> <wfw:commentRss>http://www.webdesignerdepot.com/2011/08/how-to-tame-forms-in-web-design/feed/</wfw:commentRss> <slash:comments>13</slash:comments> </item> <item><title>10 Web Design Elements that You Shouldn’t Overlook</title><link>http://www.webdesignerdepot.com/2011/03/10-web-design-elements-that-you-shouldn%e2%80%99t-overlook/</link> <comments>http://www.webdesignerdepot.com/2011/03/10-web-design-elements-that-you-shouldn%e2%80%99t-overlook/#comments</comments> <pubDate>Mon, 28 Mar 2011 11:16:41 +0000</pubDate> <dc:creator>Walter</dc:creator> <category><![CDATA[How to]]></category> <category><![CDATA[Usability]]></category> <category><![CDATA[Web Design]]></category> <category><![CDATA[design elements]]></category> <category><![CDATA[details]]></category><guid
isPermaLink="false">http://www.webdesignerdepot.com/?p=22522</guid> <description><![CDATA[When it comes to designing and building websites, it never seems to happen fast enough. Given this fast pace, many small details that are eventually required to build the website are often left out of the design process. While these details might be minor, they are what take a website from nice to truly awesome. [...]]]></description> <content:encoded><![CDATA[<p><img
class="alignleft" src="http://netdna.webdesignerdepot.com/uploads/design_elements_not_to_overlook/200x160-preview.jpg" alt="" width="200" height="160" />When  it comes to designing and building websites, it never seems to happen  fast enough.</p><p>Given this fast pace, many small details that are  eventually required to build the website are often left out of the  design process. While these details might be minor, they are what take a  website from nice to truly awesome.</p><p>These details are often easy to miss because they don’t drive the  overall look and feel of the website. The problem is that as your  development team works through the design, it will be forced to design  and create these elements for you anyway.</p><p>You could adjust the  production cycle so that the developers have time to return these assets  to you, but why not just get it all done up front so that the process  is that much cleaner?<span
id="more-22522"></span></p><p>Even worse, the development team might decide to forge ahead and just  create the assets as they go.</p><p>While many developers have a keen eye for  design, the creative who is charged with designing the website should  ultimately be the one who plans for these elements. Planning ahead for  the subtlest nuances can have a profound impact on the quality of the  final product.</p><p>Every element covered in this article stems from a question that a  developer would ask the designer if an element were missing from the  design.</p><p>Let’s dig into the 10 key elements to keep in mind as you polish  your website.</p><h1>1. Links</h1><p>While styling the various states of a link is indeed rather basic,  you might be surprised by just how often all of the extra details are  overlooked. Include the following states for all links on the page:</p><ul><li><strong>Normal</strong><br
/> This is the default state of a link; i.e. one that is not being hovered  over or being clicked or pointing to a URL that the user has already  visited. This is the link format that the majority of designers always  cover.</li><li><strong>Visited</strong><br
/> This is a link that is not being hovered over or clicked but whose target <em>has</em> been visited by the user.</li><li><strong>Active</strong><br
/> An active link is one that is currently being clicked by the user. Most  developers will replicate the hover state here if a style is not  provided to them.</li><li><strong>Hover</strong><br
/> Finally, the hover state is what the link looks like when the user  mouses over it. This and the normal states are the ones most designers  prepare for.</li></ul><p>One detail that is frequently overlooked is that these various states  need to be planned for all regions of a website. For example, many  websites have dark body copy against a light background, but the  contrast is reversed in the footer. You need to plan for all of the  various contexts of links found throughout the page.</p><p><a
href="http://fullmoonbbq.com/"><img
src="http://netdna.webdesignerdepot.com/uploads/design_elements_not_to_overlook/01-links.jpg" alt="" /></a></p><p>On <a
href="http://fullmoonbbq.com/">Full Moon BBQ</a>, for example,  we see basic red links inside the content region and basic white links  in the footer below. Again, a tiny detail but important nonetheless.</p><p><br
class="spacer_" /></p><h1>2. Forms</h1><p>For many designers, the configuration of forms is critical and  impossible to overlook. Yet, for many others, it seems to come as a  distant afterthought.</p><p>The problem with the latter attitude is that forms  often represent the only real way to convert visitors into customers.  And without proper planning and design, the usability of these forms  could fall flat, crippling the only conversion point of the website.  Preparing for these elements is essential, even if they seem much less  pressing to clients than color, branding and images.</p><p>Two of the most important considerations when laying out a form are:</p><ul><li><strong>Form label</strong><br
/> Forms typically collect personal data that users are reluctant to give  out. As such, properly informing users of the exact purpose of the form  is wise.</li><li><strong>Input fields and labels</strong><br
/> Secondly, plan for how the input fields of the form will be laid out on  the page and how the labels for those fields will be styled and oriented  relative to the fields.</li></ul><p>When left to their defaults, forms can look awkward. But with proper  preparation, the website will look seamless and be much more effective.  Let’s look at a great example that must have started with good planning:</p><p><a
href="http://awesomejs.com/"><img
src="http://netdna.webdesignerdepot.com/uploads/design_elements_not_to_overlook/02-forms.jpg" alt="" width="615" height="574" /></a></p><p>This business-critical form on <a
href="http://awesomejs.com/">Awesome</a> was clearly well thought out. The entire mission and purpose of the  page has been carefully considered. From the title and introduction to  the layout of each set of fields, with their labels and control styles,  this form is a model of planning.</p><p>Planning for forms actually leads us to several other considerations…</p><p><br
class="spacer_" /></p><h1>3. Button behavior</h1><p>Buttons can be used throughout a website for various purposes, but  they too seem to be often neglected, as do the various states of a  button. The four states of a button are:</p><ul><li><strong>Default</strong><br
/> This is the default state of a button, waiting to be clicked. Most designers cover this one but miss the others.</li><li><strong>Hover</strong><br
/> The hover state is seen when the user mouses over the button. This state  is helpful to indicate to the user that the button is an actionable  item.</li><li><strong>Click</strong><br
/> Once the user clicks the button, this state visually indicates to them  that they have clicked it. Providing this visual cue can help minimize  the frustration of users.</li><li><strong>Disabled</strong><br
/> The disabled state of a button is perhaps the least used but can be very  helpful to developers. Seldom is this state planned unless the designer  has prepared a validation process for the form (see the next section).</li></ul><p>Much like the various states of links, be sure to consider the  various states of the buttons used throughout your website. From pop-up  log-in forms to search fields to newsletter sign-up forms, all of these  buttons will need corresponding styles.</p><p><br
class="spacer_" /></p><h1>4. Form validation</h1><p>An important related detail is form validation. This is the critical  point where the website communicates the user requirements and errors in  a form. There are three core things to consider:</p><ul><li><strong>Required fields</strong><br
/> All required fields should be indicated. Most often, this is done with an asterisk, as seen on <a
href="http://psftb.ryanhavoctaylor.com/">Please Start From the Beginning</a>:</p><p><a
href="http://psftb.ryanhavoctaylor.com/"><img
src="http://netdna.webdesignerdepot.com/uploads/design_elements_not_to_overlook/03-asterisks.jpg" alt="" /></a></p></li><li><strong>Real-time validation</strong><br
/> Some validation can be done in real time as the user completes the form.  This kind of validation informs the user as quickly as possible of any  problems with the data they have inputted. This can be accomplished very  well with this <a
href="http://jquery.bassistance.de/validate/demo/">jQuery validation plug-in</a>:<br
/> <a
href="http://jquery.bassistance.de/validate/demo/"><img
src="http://netdna.webdesignerdepot.com/uploads/design_elements_not_to_overlook/04-realtime-validation.jpg" alt="" /></a></li><li><strong>Post-back validation</strong><br
/> This kind of validation happens after the user has submitted the form.  The style used for real-time validation is often repeated here, but  another option is to group all errors into a single message, as seen on <a
href="http://moo.com/">Moo</a>:<br
/> <a
href="http://moo.com/"><img
src="http://netdna.webdesignerdepot.com/uploads/design_elements_not_to_overlook/05-postback-error.jpg" alt="" /></a></li></ul><p><br
class="spacer_" /></p><h1>5. Status messages: errors, warnings, confirmations, etc.</h1><p>Users will usually need some sort of feedback after performing an  action on your website. The most likely scenario is after submitting a  form, but many other events could occur as well. Carefully consider your  website and the actions that users might take, and plan for the  messages that the website will need to communicate.</p><p>On <a
href="http://lifetoday.org/">Life Today</a>, we see a validation  message that could easily serve as a global style for error messages.  And with a slight change in colors and icons, it could also be used for  subtler warning or even confirmation messages:</p><p><a
href="http://lifetoday.org/"><img
class="image-border" src="http://netdna.webdesignerdepot.com/uploads/design_elements_not_to_overlook/06-error-message.jpg" alt="" /></a></p><p><br
class="spacer_" /></p><h1>6. Extending the background on larger screens</h1><p>Depending on the style of the website, the background elements could  be a trouble spot for your developers. Most backgrounds are simple and  don’t require much preparation, but some are complicated by gradients,  patterns and imagery.</p><p>Considering that big monitors are becoming more and more commonplace  and that most designs are planned for a 960-pixel-wide baseline, a lot  of screen real estate is left open. If your background includes anything  remotely complicated, it behooves you to plan how it will extend to  fill larger screens.</p><p>In the example that I built below, I had to accommodate for a wood  texture that extended in all directions. Not the sort of thing you want a  heavy-handed developer tackling.</p><p><img
src="http://netdna.webdesignerdepot.com/uploads/design_elements_not_to_overlook/08-background.jpg" alt="" /></p><p><br
class="spacer_" /></p><h1>7. Base HTML elements</h1><p>For copy-heavy websites, the design and styling of base HTML elements  are fundamental and should not be overlooked. But on many  marketing-oriented websites that have a busy layout and a distinct  visual style, the base elements are forgotten. And of course, the  developer never gets far into creating a website before having to  produce a standard page template anyway.</p><p>Here are the base elements to always plan for: paragraphs, headings 1  through 6, unordered and ordered lists, tabular data, form fields,  images, and bold and italicized text.</p><p>On many websites I work on, I put together a style guide to aid the developers, something like this:</p><p><img
src="http://netdna.webdesignerdepot.com/uploads/design_elements_not_to_overlook/07-html-styles.jpg" alt="" /></p><p><br
class="spacer_" /></p><h1>8. Website emails</h1><p>One thing I don’t see any designer plan for is website-generated  emails. Such a basic element is easy to miss because it is not typically  the core focus of the website. And yet email is a powerful tool that  can promote and extend a service.</p><p>My suggestion is to carefully review the contents of the website at  the planning stage to look for any emails that might be sent. Some of  the most common are:</p><ul
class="tight_list"><li>Mailing list sign-up confirmation,</li><li>Registration confirmation,</li><li>Form-completion confirmation (such as for a contact form),</li><li>Order verification after a purchase.</li></ul><p>If you really want to blow the minds of your clients and developers,  prepare an email marketing template for the website, too. You’ll provide  users with a seamless transition from the website to the inbox, and  you’ll maintain careful control over the branding in its various forms.</p><p><br
class="spacer_" /></p><h1>9. Page stretching</h1><p>The question of how a design will stretch to accommodate changing  content is also rarely dealt with but could be critical, depending on  the style of the website. Let’s look at an example where this <em>could</em> have been messed up:</p><p><a
href="http://fullmoonbbq.com/"><img
src="http://netdna.webdesignerdepot.com/uploads/design_elements_not_to_overlook/09-extend-the-design.jpg" alt="" /></a></p><p><a
href="http://fullmoonbbq.com/">Full Moon BBQ</a> has a tight home  page. This design does not allow for much movement or change in the  content. Everything has a specific size and placement. So what happens  if the owners decide to really lengthen the welcome message or add an  image? Fortunately, they have planned for this. As you can see in this  mock-up, I have edited the page to include double the text. The page  extends perfectly and accommodates for it:</p><p><a
href="http://fullmoonbbq.com/"><img
src="http://netdna.webdesignerdepot.com/uploads/design_elements_not_to_overlook/10-extra-content.jpg" alt="" /></a></p><p>Preparing alternate versions of a layout with much more content can  be extremely helpful in demonstrating how to plan for such a scenario.</p><p><br
class="spacer_" /></p><h1>10. Animations: pop-ups, tooltips, transitions, etc.</h1><p>On a standard HTML and CSS website (i.e. without Flash), animations  and transitions are so easy to overlook. And when overlooked, they will  often not even be accommodated at all. So, if animations are critical,  your best bet is to provide developers with a sample of how they should  work so that the product functions as it should.</p><p>Some of the most common places animations crop up are in:</p><ul><li><strong>Tooltips</strong><br
/> Those little pop-ups when users mouse over elements.</li><li><strong>Image rotators</strong><br
/> Home page slideshows are all the rage, and a wide range of options is available for transitions and styles.</li><li><strong>Lightbox</strong><br
/> You can style not only the lightbox itself, but also the transition to it.</li></ul><p>Each of these animated elements has a distinct visual style that must be accommodated all on its own.</p><p><br
class="spacer_" /></p><h1>Why should I care?</h1><p>Many of the elements presented here seem more helpful to the  developers than the designers. To be fair, this is partially true: if  you prepare all of these elements ahead of time, the developers will  love you. These are the kinds of things that developers get tired of  asking for or of having to figure out on their own.</p><p>Still, by doing all of this work ahead of time, you keep developers  from guessing, and you thus maintain control of the design. And by  maintaining control of the design, you have a much greater chance of  being able to add the kind of polish that turns an ordinary website into  an outstanding one. Some designers refer to this as the secret sauce  that makes their designs sing.</p><p>And if that isn’t motivation enough, consider this. Designers who  plan ahead this well and deliver a package this complete are just  fundamentally more valuable. They not only create a higher-quality  product, but they also reduce the cost of production. This means there  is more room for profit, which of course makes everyone happy.</p><p>So, keep all of these finer details in mind, and have fun planning  your website. Frankly, these details are half the fun of designing for  the web, that ever-changing medium that accommodates user interaction  and changing content.</p><p><br
class="spacer_" /></p><p><em>Patrick  McNeil is a freelance writer, developer and designer. In particular, he  loves to write about web design, train people in web development and  build websites. Patrick’s latest book project is <a
href="http://thewebdesignersideabook.com/books/the-designers-web-handbook/">The Designer’s Web Handbook</a>; it includes many additional topics along the lines of this article. You can find out more about it on <a
href="http://thewebdesignersideabook.com/">TheWebDesignersIdeaBook.com</a>. Follow Patrick on Twitter <a
href="http://twitter.com/#%21/designmeltdown/">@designmeltdown</a>.</em></p><p><em><strong>What do you design for that everyone else seems to forget? Have  you  ever presented extras like these to your clients? What sorts of  thing do  you find developers always asking you to add to a design?</strong></em></p><p><br/><br
/><table
width="100%" style="border-top:1px solid #d7d7d7; border-bottom:1px solid #d7d7d7;" height="20"><tr><td
valign="center"> <a
href="http://www.mightydeals.com/deal/wpbusinessbundle.html?ref=inwidget"><font
face="Arial" size="3" color="#e64f32"><b>Never Ending WordPress Business Bundle &#8211; only $14!</b></font></a></td><td
width="90"> <a
href="http://www.mightydeals.com/?ref=inwidget"><br
/> <img
src="http://mightydeals.com/web/images/widget-logo.png" height="40" width="90" border="0"  /><br
/> </a></td></tr></table><p><br/></p> <a
href="http://www.webdesignerdepot.com/2011/03/10-web-design-elements-that-you-shouldn%e2%80%99t-overlook/">Source</a><style type="text/css">
 p img {display:inline-block; margin-right:10px;}
.alignleft {float:left;}
p.showcase {clear:both;}
body#browserfriendly p, body#podcast p, div#emailbody p{margin:0;}
</style>]]></content:encoded> <wfw:commentRss>http://www.webdesignerdepot.com/2011/03/10-web-design-elements-that-you-shouldn%e2%80%99t-overlook/feed/</wfw:commentRss> <slash:comments>40</slash:comments> </item> <item><title>Usability Resources to Win Arguments</title><link>http://www.webdesignerdepot.com/2010/10/usability-resources-to-win-arguments/</link> <comments>http://www.webdesignerdepot.com/2010/10/usability-resources-to-win-arguments/#comments</comments> <pubDate>Wed, 13 Oct 2010 10:30:46 +0000</pubDate> <dc:creator>John</dc:creator> <category><![CDATA[Usability]]></category> <category><![CDATA[User Interface]]></category> <category><![CDATA[Web Design]]></category> <category><![CDATA[Clients]]></category> <category><![CDATA[Resources]]></category> <category><![CDATA[ui]]></category><guid
isPermaLink="false">http://www.webdesignerdepot.com/?p=19139</guid> <description><![CDATA[Today&#8217;s post is a big one and it&#8217;s most definitely one for your bookmarks menu, because from time to time when speaking with clients it becomes necessary to have material to backup the statements which you are making. Sometimes clients will suggest things such as forcing all users to register with a six page long [...]]]></description> <content:encoded><![CDATA[<p><a
href="http://netdna.webdesignerdepot.com/uploads/2010/10/thumb1.jpg"><img
class="alignleft size-full wp-image-20097" title="thumb" src="http://netdna.webdesignerdepot.com/uploads/2010/10/thumb1.jpg" alt="thumb" width="200" height="160" /></a>Today&#8217;s post is a big one and it&#8217;s most definitely one for your  bookmarks menu, because from time to time when speaking with clients it  becomes necessary to have material to backup the statements which you  are making.</p><p>Sometimes clients will suggest things such as forcing all users to register with a six page long form before they can even access the site. They aren&#8217;t web professionals, it&#8217;s not their fault for not knowing that this isn&#8217;t a good idea from a usability perspective.</p><p>If you&#8217;re going to convince them that this is a bad idea, however, then you&#8217;re going to need some rock solid material to back that up. While an element of trust is always important to a working relationship, you have to respect that sometimes clients will just need to see the facts in front of them to fully understand that what you&#8217;re saying is correct.</p><p>So, what we&#8217;ve done for you today is compiled a list of some of the biggest, most compelling usability articles which address common issues. Hopefully this should help you during tough conversations about what does and doesn&#8217;t work on a a website.</p><p>Bookmark this post, come back to it, use it in meetings and educate  your clients on the things which work for other websites, so that they might also work for them.</p><p><span
id="more-19139"></span></p><h1>How Not Forcing Users to Register Increased Sales by $300million</h1><p><a
href="http://www.uie.com/articles/three_hund_million_button/"><img
class="alignnone size-full wp-image-19166" src="http://netdna.webdesignerdepot.com/uploads/2010/07/129.jpg" alt="1" width="615" height="200" /></a></p><p>A truly fascinating article covering how one ecommerce site removed   forced user-registration during the checkout process, with a result of a   $300million increase in revenue. Very impressive.</p><p><br
class="spacer_" /></p><h1>10 Useful Usability Findings and Guidelines</h1><p><a
href="http://www.smashingmagazine.com/2009/09/24/10-useful-usability-findings-and-guidelines/"><img
class="image-border" src="http://netdna.webdesignerdepot.com/uploads/2010/07/229.jpg" alt="2" width="615" height="200" /></a></p><ul
class="tight_list"><li>Form labels work best above the field</li><li>Users focus on faces</li><li>Quality of design is an indicator of credibility</li><li>Most users <em>do</em> know how to scroll</li><li>Blue is the best color for links</li><li>The ideal search box is 27 characters wide</li><li>White space improves comprehension</li><li>Effective user testing doesn&#8217;t have to be extensive</li><li>Informative product pages stand out</li><li>Most users are blind to advertising</li></ul><p><br
class="spacer_" /></p><h1>Browser Resolution Stats by Google</h1><p><a
href="http://browsersize.googlelabs.com/"><img
class="alignnone size-full wp-image-19168" src="http://netdna.webdesignerdepot.com/uploads/2010/07/325.jpg" alt="3" width="615" height="200" /></a></p><p>A big diagram by google showing browsers sizes overlaid on top of a web page and where you should place call to actions to ensure that they are immediately visible without the need to scroll.</p><p><br
class="spacer_" /></p><h1>The myth of the page fold: evidence from user testing</h1><p><a
href="http://www.cxpartners.co.uk/thoughts/the_myth_of_the_page_fold_evidence_from_user_testing.htm"><img
class="alignnone size-full wp-image-19169" src="http://netdna.webdesignerdepot.com/uploads/2010/07/426.jpg" alt="4" width="615" height="200" /></a></p><p>&#8220;People tell us that they don’t mind scrolling and the behaviour we see  in user testing backs that up. We see that people are more than  comfortable scrolling long, long pages to find what they are looking  for. A quick snoop around the web will show you successful brands that  are not worrying about the fold either.&#8221;</p><p><br
class="spacer_" /></p><h1>247 web usability guidelines</h1><p><a
href="http://www.userfocus.co.uk/resources/guidelines.html"><img
class="image-border" src="http://netdna.webdesignerdepot.com/uploads/2010/07/517.jpg" alt="5" width="615" height="200" /></a></p><p>A massive post of usability articles covering:</p><ul
class="tight_list"><li>Home page usability: 20 guidelines to evaluate the usability of home pages.</li><li>Task orientation: 44 guidelines to evaluate how well a web site supports the users tasks.</li><li>Navigation and IA: 29 guidelines to evaluate navigation and information architecture.</li><li>Forms and data entry: 23 guidelines to evaluate forms and data entry.</li><li>Trust and credibility: 13 guidelines to evaluate trust and credibility.</li><li>Writing and content quality: 23 guidelines to evaluate writing and content quality.</li><li>Page layout and visual design: 38 guidelines to evaluate page layout and visual design.</li><li>Search usability: 20 guidelines to evaluate search.</li><li>Help, feedback and error tolerance: 37 guidelines to evaluate help, feedback and errors</li></ul><p><br
class="spacer_" /></p><h1>An Introduction to Using Patterns in Web Design</h1><p><a
href="http://37signals.com/papers/introtopatterns//index"><img
class="alignnone size-full wp-image-19171" src="http://netdna.webdesignerdepot.com/uploads/2010/07/616.jpg" alt="6" width="615" height="200" /></a></p><p>A fascinating article covering the use of patterns for usability in web design, or &#8220;chunks&#8221; as the author calls them!</p><p><br
class="spacer_" /></p><h1>F-Shaped Pattern For Reading Web Content</h1><p><a
href="http://www.useit.com/alertbox/reading_pattern.html"><img
class="image-border" src="http://netdna.webdesignerdepot.com/uploads/2010/07/715.jpg" alt="7" width="615" height="200" /></a></p><p>Eye-tracking visualizations show that users often read Web pages in an  F-shaped pattern: two horizontal stripes followed by a vertical stripe.</p><p><br
class="spacer_" /></p><h1>Top Ten Mistakes in Web Design</h1><p><a
href="http://www.useit.com/alertbox/9605.html"><img
class="image-border" src="http://netdna.webdesignerdepot.com/uploads/2010/07/814.jpg" alt="8" width="615" height="200" /></a></p><p>The ten most egregious offenses against users. Web design disasters and  HTML horrors are legion, though many usability atrocities are less  common than they used to be.</p><p><br
class="spacer_" /></p><h1>Weblog Usability: The Top Ten Design Mistakes</h1><p><a
href="http://www.useit.com/alertbox/weblogs.html"><img
class="image-border" src="http://netdna.webdesignerdepot.com/uploads/2010/07/914.jpg" alt="9" width="615" height="200" /></a></p><p>Blogs are often too internally focused and ignore key usability issues,  making it hard for new readers to understand the site and trust the  author.</p><p><br
class="spacer_" /></p><h1>Top-10 Application-Design Mistakes</h1><p><a
href="http://www.useit.com/alertbox/application-mistakes.html"><img
class="image-border" src="http://netdna.webdesignerdepot.com/uploads/2010/07/105.jpg" alt="10" width="615" height="200" /></a></p><p>Application usability is enhanced when users know how to operate the UI  and it guides them through the workflow. Violating common guidelines  prevents both.</p><p><br
class="spacer_" /></p><h1>Mega Drop-Down Navigation Menus Work Well</h1><p><a
href="http://www.useit.com/alertbox/mega-dropdown-menus.html"><img
class="image-border" src="http://netdna.webdesignerdepot.com/uploads/2010/07/1110.jpg" alt="11" width="615" height="200" /></a></p><p>Big, two-dimensional drop-down panels group navigation options to  eliminate scrolling and use typography, icons, and tooltips to explain  the user&#8217;s choices.</p><p><br
class="spacer_" /></p><h1>10 Usability Crimes You Really Shouldn’t Commit</h1><p><a
href="http://line25.com/articles/10-usability-crimes-you-really-shouldnt-commit"><img
class="alignnone size-full wp-image-19177" src="http://netdna.webdesignerdepot.com/uploads/2010/07/1210.jpg" alt="12" width="615" height="200" /></a></p><p>A big post by Chris Spooner covering forms, logo links, link states, alt attributes, background images, content, link text and text alignment.</p><p><br
class="spacer_" /></p><h1>101 Five-Minute Fixes to Incrementally Improve Your Web Site</h1><p><a
href="http://www.insidecrm.com/features/101-web-site-fixes-031808/"><img
class="alignnone size-full wp-image-19178" src="http://netdna.webdesignerdepot.com/uploads/2010/07/135.jpg" alt="13" width="615" height="200" /></a></p><p>An absolutely huge post covering quick improvements for usability across so many different levels. This is great one for picking out things that your client&#8217;s site might <em>need</em> to have done to it!</p><p><br
class="spacer_" /></p><h1>Blasting the Myth of the Fold</h1><p><a
href="http://www.boxesandarrows.com/view/blasting-the-myth-of"><img
class="image-border" src="http://netdna.webdesignerdepot.com/uploads/2010/07/144.jpg" alt="14" width="615" height="200" /></a></p><p>Another article slamming the idea that nothing below the fold ever gets seen. Users know how to scroll. The fold is relevant for a few things, but it is not the be-all and end-all.</p><p><br
class="spacer_" /></p><h1>UX Myths</h1><p><a
href="http://uxmyths.com/"><img
class="image-border" src="http://netdna.webdesignerdepot.com/uploads/2010/07/154.jpg" alt="15" width="615" height="200" /></a></p><p>A great site which is regularly updated with a list of (sometimes funny) myths of user experience issues, these include things such as &#8220;all pages should be accessible in 3 clicks&#8221; and &#8220;the home page is your more important one&#8221;.</p><p><br
class="spacer_" /></p><h1>Eyetracking points the way to effective news article design</h1><p><a
href="http://www.ojr.org/ojr/stories/070312ruel/"><img
class="image-border" src="http://netdna.webdesignerdepot.com/uploads/2010/07/164.jpg" alt="16" width="615" height="200" /></a></p><p>Real eye tracking tests carried out and showing interesting results with regards to the effectiveness of laying out new articles and blog posts.</p><p><br
class="spacer_" /></p><h1>Label Placement in Forms</h1><p><a
href="http://www.uxmatters.com/mt/archives/2006/07/label-placement-in-forms.php"><img
class="alignnone size-full wp-image-19182" src="http://netdna.webdesignerdepot.com/uploads/2010/07/175.jpg" alt="17" width="615" height="200" /></a></p><p>A detailed case study showing that the optimum placement for label forms is to the top-right of the form field.</p><p><br
class="spacer_" /></p><h1 id="post-714">12 Standard Screen Patterns</h1><p><a
href="http://designingwebinterfaces.com/designing-web-interfaces-12-screen-patterns"><img
class="alignnone size-full wp-image-19183" src="http://netdna.webdesignerdepot.com/uploads/2010/07/184.jpg" alt="18" width="615" height="200" /></a></p><p>A great rouncup of some standard screen layouts which may pursuade clients away from spherical invisible navigation, or similar.</p><p><br
class="spacer_" /></p><h1>&#8220;Mad Libs&#8221; Style Form Increases Conversion 25-40%</h1><p><a
href="http://www.lukew.com/ff/entry.asp?1007"><img
class="image-border" src="http://netdna.webdesignerdepot.com/uploads/2010/07/194.jpg" alt="19" width="615" height="200" /></a></p><p>This interesting article covers how well forms work when arranged as blanks within sentences rather than simple linear pages.</p><p><br
class="spacer_" /></p><h1>Breadcrumbs In Web Design: Examples And Best Practices</h1><p><a
href="http://www.smashingmagazine.com/2009/03/17/breadcrumbs-in-web-design-examples-and-best-practices-2/"><img
class="image-border" src="http://netdna.webdesignerdepot.com/uploads/2010/07/204.jpg" alt="20" width="615" height="200" /></a></p><p>&#8220;On websites that have a lot of pages, <strong>breadcrumb navigation</strong> can greatly  enhance the way users find their way around.  In terms of  usability, breadcrumbs reduce the number of actions a website visitor   needs to take in order to get to a higher-level page, and they improve  the findability of website sections  and pages.&#8221;</p><p><br
class="spacer_" /></p><h1>Inline Validation in Web Forms</h1><p><a
href="http://www.alistapart.com/articles/inline-validation-in-web-forms/"><img
class="image-border" src="http://netdna.webdesignerdepot.com/uploads/2010/07/2110.jpg" alt="21" width="615" height="200" /></a></p><p>A study by A List Apart on inline validation in forms with live user videos showing the differences between standard forms vs inline validation.</p><p><br
class="spacer_" /></p><p><em>This post was authored exclusively for WDD by <a
href="http://john.onolan.org/">John   O&#8217;Nolan</a>,   a core contributor to the WordPress UI Team, writer and entrepreneur   based in   Surrey in the United Kingdom. John loves to talk to people,   so why not follow <a
rel="nofollow" href="http://twitter.com/johnonolan" target="_blank">@JohnONolan</a> on twitter too?</em></p><p><em><strong>What about you? Do you have any really great articles like these  which you think would be a good addition to the list? Drop us a line in  the comments below so that everyone can benefit from them!</strong></em></p><p><br/><br
/><table
width="100%" style="border-top:1px solid #d7d7d7; border-bottom:1px solid #d7d7d7;" height="20"><tr><td
valign="center"> <a
href="http://www.mightydeals.com/deal/wpbusinessbundle.html?ref=inwidget"><font
face="Arial" size="3" color="#e64f32"><b>Never Ending WordPress Business Bundle &#8211; only $14!</b></font></a></td><td
width="90"> <a
href="http://www.mightydeals.com/?ref=inwidget"><br
/> <img
src="http://mightydeals.com/web/images/widget-logo.png" height="40" width="90" border="0"  /><br
/> </a></td></tr></table><p><br/></p> <a
href="http://www.webdesignerdepot.com/2010/10/usability-resources-to-win-arguments/">Source</a><style type="text/css">
 p img {display:inline-block; margin-right:10px;}
.alignleft {float:left;}
p.showcase {clear:both;}
body#browserfriendly p, body#podcast p, div#emailbody p{margin:0;}
</style>]]></content:encoded> <wfw:commentRss>http://www.webdesignerdepot.com/2010/10/usability-resources-to-win-arguments/feed/</wfw:commentRss> <slash:comments>25</slash:comments> </item> <item><title>Best Practices for Designing Usable Websites for Kids</title><link>http://www.webdesignerdepot.com/2010/09/best-practices-for-designing-usable-websites-for-kids/</link> <comments>http://www.webdesignerdepot.com/2010/09/best-practices-for-designing-usable-websites-for-kids/#comments</comments> <pubDate>Fri, 24 Sep 2010 10:30:03 +0000</pubDate> <dc:creator>Walter</dc:creator> <category><![CDATA[Review]]></category> <category><![CDATA[Usability]]></category> <category><![CDATA[kids]]></category> <category><![CDATA[nielsen norman group]]></category><guid
isPermaLink="false">http://www.webdesignerdepot.com/?p=19888</guid> <description><![CDATA[Designing for young kids is something not a lot of designers think about until approached by a client who wants to target that age group. But the truth is that kids in the 3-12 age group are using the Internet in surprising numbers. Ten years ago, it was rare for a child who hadn&#8217;t even [...]]]></description> <content:encoded><![CDATA[<p><a
href="http://www.flickr.com/photos/robertnelson/2111753056/"><img
class="alignleft" src="http://netdna.webdesignerdepot.com/uploads/usability_kids//thumbnail.jpg" alt="" width="200" height="160" /></a>Designing for young kids is something not a lot of designers think  about until approached by a client who wants to target that age group.</p><p>But the truth is that kids in the 3-12 age group are using the Internet  in surprising numbers. Ten years ago, it was rare for a child who hadn&#8217;t  even yet reached school-age to use a computer. Now, there are a  surprising number of websites specifically catering to them. And that  number is growing all the time.</p><p>The Nielsen Norman Group, long known for their usability studies, has  recently completed a study on the Internet habits and related usability  issues often encountered by kids in the 3-12 age group.</p><p>The report is based on  actual user studies, rather than just surveys asking kids what their  internet habits and experiences are, and provide invaluable insight into  the real usability issues confronting kids, and what users can do about  it.</p><p>Below is just a brief sampling of some of the topics covered in the  report and the study. The report can be purchased and downloaded from  the <a
href="http://www.nngroup.com/reports/kids/">NN/G website</a>.<span
id="more-19888"></span></p><h1>Myth: Kids Have Cutting-Edge Technology</h1><p><a
href="http://www.flickr.com/photos/jenniewoo/75853330"><img
src="http://netdna.webdesignerdepot.com/uploads/usability_kids//imac.jpg" alt="" /></a></p><p>A lot of us tend to believe that kids have access to cutting-edge  technology. They have the newest computers, cell phones, and other  gadgets at their disposal. While this may be more common among  teenagers, younger kids often have outdated computers.</p><p>If you think about it for a minute, it makes sense. Kids in  elementary school often aren&#8217;t as dependent on computers for schoolwork,  and therefore parents often give them hand-me-downs (either their own  or from an older sibling) or less expensive machines. This not only  means that kids often have computers with slower processors, but may  also be more limited in internet connection speeds.</p><p>Even the computers kids use at school are often older and outdated.  School computers are often donated and budgets for new technology are  often very limited. School computer labs may hang on to the same  computers for five years or more due to budgetary restrictions. And  often these computers aren&#8217;t particularly cutting-edge when they&#8217;re  purchased.</p><p><br
class="spacer_" /></p><h1>Myth: Kids Understand the Technology They Use</h1><p>A lot of adults look at kids using computers and assume they  understand how they work. After all, a lot of these kids have grown up  using computers and it seems like second-nature for many of them.</p><p>The truth is that just because kids know <em>how</em> to use something doesn&#8217;t mean they have any clue how it actually does what it does:</p><blockquote><p><em>Like most adults who don&#8217;t understand how a refrigerator  works, kids do not feel they need to understand the underlying  mechanisms of the Web before using it.</em></p></blockquote><p><br
class="spacer_" /></p><p>Because of this, it&#8217;s important that designers don&#8217;t overestimate the  knowledge of their visitors. It becomes more important as a user&#8217;s age  decreases, as they have less experience in how technology generally  works.</p><p><a
href="http://www.flickr.com/photos/mojodenbowsphotostudio/2127383658/"><img
src="http://netdna.webdesignerdepot.com/uploads/usability_kids//olpc.jpg" alt="" /></a></p><p><br
class="spacer_" /></p><h1>Myth: Kids are More Web Savvy Than Adults</h1><p>Because kids often spend so much time using technology, people often  assume they&#8217;re much more savvy online than adults. But the truth is,  they have just as many problems with usability as adults do.</p><p>Don&#8217;t think that you can skip certain principles of good usability  with the idea that kids will just figure it out. Kids don&#8217;t have any  special powers that allow them to circumvent usability problems. And in  fact, when talking about the youngest web users, they&#8217;re often much less  savvy with the Internet than their parents. They have no experience  online to draw from, and therefore are constantly learning new things.</p><blockquote><p><em>The youngest users do not know where to click and what to do  on a website. There are no rules because the users are not aware of  them. Many of the inexperienced users do not know how to read. How do  you tell children what they are supposed to do when they cannot read  instructions?</em></p></blockquote><p><br
class="spacer_" /></p><p>That last part presents a particular challenge to designers. Visual  cues are particularly important for sites with younger user groups. Even  on sites where the target audience can likely read, remember that  reading comprehension is still a huge variable among young children and  keep your instructions simple and straight-forward.</p><p><br
class="spacer_" /></p><h1>Kids Have Little Patience Online</h1><p>We all have a tendency to stop using sites that frustrate us because  of poor usability or other issues. Kids and teens do so even faster than  adults. If they have issues using a site, they&#8217;ll leave almost  immediately, where adults might click around and try to figure it out.</p><p>Kids also get fed up with loading times for things like videos. This  can be compounded by the fact that these kids often have older and less  powerful computers than their older siblings or parents. Designers  should be very wary of longer load times, or at least make it clear how  long kids can expect to wait (ex, using a progress bar rather than just a  &#8220;loading&#8221; text or animation).</p><blockquote><p><em>We saw several kinds of reactions while users were waiting  for Flash files to download, but they all showed their dissatisfaction  with the website when they had to wait. The longer the users had to  wait, the worse their reactions got. Many just clicked the Back button.</em></p></blockquote><p><br
class="spacer_" /></p><p><a
href="http://www.flickr.com/photos/ivanwalsh/4352801673/"><img
src="http://netdna.webdesignerdepot.com/uploads/usability_kids//pics.jpg" alt="" /></a></p><p><br
class="spacer_" /></p><h1>Kids Are Online to Be Entertained</h1><p>Adults often go online for information. They check out news sites,  visit portals, and use search engines. Kids, on the other hand, mostly  go online for entertainment (and homework). They play games, check out  sites about their favorite characters or celebrities, and otherwise have  fun online.</p><p>If the site you&#8217;re designing isn&#8217;t strictly an entertainment site,  adding entertaining elements like games or other interactive content can  greatly improve the site&#8217;s engagement among younger visitors.</p><blockquote><p><em>Because many kids look for entertainment on the Web,  multimedia elements are very attractive when they serve content in a  richer and more amusing way.</em></p></blockquote><p><br
class="spacer_" /></p><h1>Take Into Account Poorer Motor Skills</h1><p>Designers often forget about the physical differences between  children and adults when designing a site. Kids are less dexterous than  adults, and therefore have a harder time typing and manipulating a  mouse. This means they tend to make more mistakes than adults.</p><blockquote><p><em>Kids also had trouble using the mouse and they often clicked  on the right button by mistake, and many didn&#8217;t know how to drag.  They&#8230;often missed the target and clicked a different item close by, by  mistake. </em></p><p><em>Designers should take care to make links and clickable areas large  and well-defined, with buffer space between them to help minimize the  number of mistaken clicks kids make while using their sites.</em></p></blockquote><p><br
class="spacer_" /></p><h1>Kids Are More Likely to Experiment Online</h1><p>Adults often have very strict preconceived notions about how things  should work online. They&#8217;re used to sites they visit behaving in a  certain way, and expect similar sites to act in similar ways.</p><p>Kids, because of their limited experience online, don&#8217;t have all  those same preconceived notions about the way things are supposed to be.  Because of this, they&#8217;re much more willing to experiment with different  elements of a website. Kids will even sometimes engage in a  &#8220;minesweeping&#8221; method of exploring a website, where they basically just  click randomly hoping for a response.</p><p>Because of this, designers need to be careful to remove unnecessary  and extraneous links from their pages (or move them to places where kids  are less likely to click, like below the footer) so kids don&#8217;t  accidentally click on content that&#8217;s unlikely to engage them (like an  about page or information intended for parents rather than kids).</p><p>If a  kid gets lost on your site, they&#8217;ll often leave rather than knowing to  use the back button to get back to where they wanted to be.</p><p><br
class="spacer_" /></p><h1>Kids Don&#8217;t Differentiate Between Content and Advertising</h1><p>Adults often have &#8220;banner blindness&#8221; and ignore promotional or  advertising content on websites they visit.</p><p>Kids, partly because of  their limited web experience, make little distinction between  advertising and promotional parts of a website and the site&#8217;s actual  content.</p><p>This is both good and bad. It&#8217;s great for advertisers, who can often  lure kids away from sites they&#8217;ve intentionally visited much more easily  than they can adults. For site owners, it can be detrimental, as kids  often leave a site without even realizing they&#8217;ve left.</p><p><br
class="spacer_" /></p><h1>So What Does That All Mean?</h1><p>If you&#8217;re designing a website for young children, it&#8217;s important to  note the differences between the way kids use the Internet and the way  teens and adults do. Kids are much less forgiving in a lot of ways than  adults, and will more quickly abandon a site that doesn&#8217;t meet their  needs and expectations.</p><p>If you&#8217;re a designer who takes on projects aimed at kids on a regular  (or even occasional) basis, it&#8217;s worth checking out the full-length  study from Nielsen Norman Group.</p><p>Understanding how kids actually use the  internet (rather than how they say they use it, which often varies  widely from the truth) will greatly improve your ability to create  websites that are engaging for this often-overlooked group of Internet  users.</p><p><br
class="spacer_" /></p><p><em>For more information, you can purchase and download the full report from  the <a
href="http://www.nngroup.com/reports/kids/">NN/G website</a>.</em></p><p><em>Written exclusively for WDD by <a
href="http://cameronchapman.com/">Cameron Chapman</a>.</em></p><p><br/><br
/><table
width="100%" style="border-top:1px solid #d7d7d7; border-bottom:1px solid #d7d7d7;" height="20"><tr><td
valign="center"> <a
href="http://www.mightydeals.com/deal/wpbusinessbundle.html?ref=inwidget"><font
face="Arial" size="3" color="#e64f32"><b>Never Ending WordPress Business Bundle &#8211; only $14!</b></font></a></td><td
width="90"> <a
href="http://www.mightydeals.com/?ref=inwidget"><br
/> <img
src="http://mightydeals.com/web/images/widget-logo.png" height="40" width="90" border="0"  /><br
/> </a></td></tr></table><p><br/></p> <a
href="http://www.webdesignerdepot.com/2010/09/best-practices-for-designing-usable-websites-for-kids/">Source</a><style type="text/css">
 p img {display:inline-block; margin-right:10px;}
.alignleft {float:left;}
p.showcase {clear:both;}
body#browserfriendly p, body#podcast p, div#emailbody p{margin:0;}
</style>]]></content:encoded> <wfw:commentRss>http://www.webdesignerdepot.com/2010/09/best-practices-for-designing-usable-websites-for-kids/feed/</wfw:commentRss> <slash:comments>11</slash:comments> </item> <item><title>Stop Designing Aesthetics, Start Designing Emotions</title><link>http://www.webdesignerdepot.com/2010/08/stop-designing-aesthetics-start-designing-emotions/</link> <comments>http://www.webdesignerdepot.com/2010/08/stop-designing-aesthetics-start-designing-emotions/#comments</comments> <pubDate>Mon, 09 Aug 2010 10:30:01 +0000</pubDate> <dc:creator>John</dc:creator> <category><![CDATA[Design]]></category> <category><![CDATA[Usability]]></category> <category><![CDATA[Web Design]]></category> <category><![CDATA[emotions]]></category><guid
isPermaLink="false">http://www.webdesignerdepot.com/?p=18409</guid> <description><![CDATA[Despite the somewhat provocative title, you shouldn&#8217;t really stop designing aesthetics. Gradients and colors and contrast are all good, but there&#8217;s a more important side to web design that many people overlook most of the time: Designing emotions. Discussing emotion in design is a bit of a hot topic at the moment, it seems to [...]]]></description> <content:encoded><![CDATA[<p><a
rel="nofollow" href="http://www.webdesignerdepot.com/2010/07/stop-designing-aesthetics-start-designing-emotions/" target="_blank"><img
class="alignleft size-full wp-image-18583" src="http://netdna.webdesignerdepot.com/uploads/2010/07/preview2.jpg" alt="preview" width="200" height="160" /></a>Despite the somewhat provocative title, you shouldn&#8217;t really stop designing aesthetics.</p><p>Gradients and colors and contrast are all good, but there&#8217;s a more important side to web design that many people overlook most of the time: <strong>Designing emotions.</strong></p><p>Discussing emotion in design is a bit of a hot topic at the moment, it  seems to be popping up in more and more blog posts and speaker sessions.  In fact I saw at least three different web designers say that it was  the subject of the talk which they had recently submitted for next  year&#8217;s SXSWi.</p><p>So what&#8217;s all the fuss about? Today we&#8217;ll take a look at what that means, how you can do it and why you should. This is taking design to the next level, beyond the norm.<span
id="more-18409"></span></p><h1>Emotion Design</h1><p><a
href="http://www.flickr.com/photos/allyaubryphotography/2535453766/"><img
class="alignnone size-full wp-image-18575" src="http://netdna.webdesignerdepot.com/uploads/2010/07/110.jpg" alt="1" width="615" height="400" /></a></p><p>Emotions are important in design because emotions are important in absolutely everything.</p><p>Everyone is trying to make their brand, their website, their name the most memorable thing possible but how are they going to accomplish that? Think of the most memorable times in your life, right now, go ahead.</p><p>I&#8217;ll wager a good amount of money that the three to four things that you just thought of all involved a lot of emotion. The death of a loved one, the birth of a child, your wedding, the day you bought your first car. We remember the things which instill powerful emotions within us.</p><p>In his book, <em>The Alchemies of The Mind</em>, Jon Elster emphatically states that <em>&#8220;Emotions matter because if we did not have them nothing else would matter. Creatures without emotion would have no reason for living, nor, for that matter, for committing suicide. Emotions are the stuff of life…. Emotions are the most important bond or glue that links us to others…. Objectively, emotions matter because many forms of human behaviour  would be unintelligible if we did not see them through the prism of emotion.&#8221;</em></p><p><em><br
/> </em></p><h1>Using Emotion in Web Design</h1><p><a
href="http://www.bbc.co.uk/"><img
class="alignnone size-full wp-image-18576" src="http://netdna.webdesignerdepot.com/uploads/2010/07/210.jpg" alt="2" width="615" height="400" /></a></p><p>As a web designer, it&#8217;s very easy to get caught up in just the design of the graphics. Of course the next step beyond that which everyone gets stuck on is usability.</p><p>So many people talk about usability like it&#8217;s the be-all and end-all of web design. As one speaker at the Future of Web Design in London succinctly put it this year: <em>&#8220;Designing a website to be usable is like baking a cake to be edible. It&#8217;s simply not enough. A usable website should be the minimum requirement, it should go without saying that a website should be absolutely usable. It&#8217;s time to look beyond that.&#8221;</em></p><p>At the most basic level of considering your users&#8217; emotions, you can consider letting <em>them</em> choose how they want your site to work. What content do they want to see on the home page? What order do they want to see it in? What&#8217;s their favorite color? Allowing users to customize your site to <em>their</em> preferences (without having to sign up for anything) creates and emotional attachment to the site with which the user is interacting. They&#8217;ve just invested time, however little of it, to make this site perfect for them. They&#8217;re going to remember that. Check out the <a
rel="nofollow" href="http://www.bbc.co.uk" target="_blank">BBC website</a> if you want to see this in action.</p><p>What about making users happy without them having to do any customizations though? What about creating something that is so naturally pleasurable to use that people can&#8217;t put it down? Well, allow me to introduce you to my good friend: The iPhone.</p><p>The iPhone isn&#8217;t actually the story here, it&#8217;s the touch based device, regardless of who it&#8217;s manufactured by. As human beings we live in a real world, touching real things, moving them with our hands. In fact, if you think about it, computers are incredibly unnatural to use: We move one thing on our desk that moves another thing on a screen, and we spend hours pushing complex button combinations with our fingers whilst looking in a completely different (vertical) direction.</p><p>People are enthralled with touch based devices because they make computers work in a way that we&#8217;re naturally programmed to understand. We see something, we touch it, and it responds in some way. I recently watched a three year old girl navigating her way around an iPhone with absolutely no problems at all. The best part? No one had ever taught her to use it.</p><p>Touch based devices create emotions within us: joy, intrigue, and surprise. We understand them perfectly and yet they still thrill us because they&#8217;re so clever.</p><p><br
class="spacer_" /></p><h1>Creating Emotions</h1><p><a
href="http://www.flickr.com/photos/thms/4611687962/"><img
class="alignnone size-full wp-image-18577" src="http://netdna.webdesignerdepot.com/uploads/2010/07/310.jpg" alt="3" width="615" height="400" /></a></p><p>So how can we create emotions for users of our websites outside of the UI? Well, to an extent you need to put your marketing cap on here. You need to think about people, not design.</p><p>You need to think about perception, not composition. If you can ask yourself a few vital questions about how your users are feeling, then you can go a long way to pleasing them.</p><p>Consider <a
rel="nofollow" href="http://www.freeagentcentral.com/" target="_blank">FreeAgent</a> for a moment, a fantastic piece of accounting software in the UK, they know that typically people who visit their website are angry, frustrated, and fed up with trying to do their accounts (and failing). Their website is targeted almost solely at cheering you up and telling you not to worry, there&#8217;s an easier way to do things. They win.</p><p><br
class="spacer_" /></p><h1>Desire</h1><p><a
href="http://www.flickr.com/photos/72213316@N00/3143099882/"><img
class="alignnone size-full wp-image-18579" src="http://netdna.webdesignerdepot.com/uploads/2010/07/412.jpg" alt="4" width="615" height="200" /></a></p><p>But what about creating emotions at more of a root-level? Apple (yes Apple, no article about design would be complete without some mention of them, so we might as well get it over with) create astonishing levels of desire and jealousy amongst their customers.</p><p>Despite producing over-priced, under-performing, over-rated products they still retain unprecedented success, constantly. Apple are the biggest fashion label of the tech world. That&#8217;s not an insult by the way, sex sells, and everyone else needs to catch up. Apple makes <em>desirable</em> products.</p><p><em><strong>&#8220;Thin, beautiful, portable, durable, accessible, powerful, unlimited, magical, revolution.</strong>&#8220;</em></p><p>Sound familiar? All of those words and sentiments were used in Apple&#8217;s 30 second <a
rel="nofollow" href="http://www.youtube.com/watch?v=MKZrqiBtUZo" target="_blank">advertisement for the iPad</a>, and not a single one of them has anything to do with what the product does.</p><p><br
class="spacer_" /></p><h1>Sympathy</h1><p><a
href="http://www.flickr.com/photos/ralphrepo_photolog/4072932711/"><img
class="alignnone size-full wp-image-18580" src="http://netdna.webdesignerdepot.com/uploads/2010/07/510.jpg" alt="5" width="615" height="200" /></a></p><p>Another common case study of companies creating emotions in customers, and this is going to be a controversial one, is with charities.</p><p>Charities instill sadness and sympathy from deep within you, in order to make sales. Think of every advertisement you&#8217;ve ever seen for a charity&#8230; most of them go like this: <em>&#8220;Sally is a [starving child / stray dog / person with a terminal illness], she&#8217;s all alone. Her parents died just after she was born and she&#8217;s been living on the streets like this ever since.&#8221;</em></p><p>The cause may be just, but don&#8217;t mistake the marketing tactics as legitimate sentiments appealing to your moral integrity. The people who create those advertisements know exactly what they&#8217;re doing. They&#8217;re making you sad, they&#8217;re making you sympathetic, and they&#8217;re making you want to reach out and help &#8211; with your wallet.</p><p><br
class="spacer_" /></p><h1>Anger</h1><p><a
href="http://www.flickr.com/photos/lostprophet/3974173613/"><img
class="alignnone size-full wp-image-18581" src="http://netdna.webdesignerdepot.com/uploads/2010/07/610.jpg" alt="6" width="615" height="200" /></a></p><p>Possibly the most interesting way to look at deliberately instilling emotions in users is from the perspective of anger.</p><p>Now, this has been suggested before, but to my knowledge never confirmed. What do we consider to be great customer service? Usually it&#8217;s when a company gets something really wrong, they own up to it, give you a full refund and treat you really well.</p><p>It&#8217;s unexpected and we absolutely love it. It may be cynical, but is it really unreasonable to think that companies may now be screwing up your order on purpose? If I was running an ecommerce store I would deliberately screw up about 5% of all my orders &#8211; then give the customer a full refund and send them the product anyway.</p><p>You can&#8217;t buy publicity like the way they&#8217;re going to talk about that to all their friends.</p><p><br
class="spacer_" /></p><h1>Closing Comments</h1><p>Just because something functions correctly, doesn&#8217;t mean it&#8217;s any good. We need to stop thinking about usability for two seconds and push ourselves to go a little further than that. How are my users feeling? Why are they even on this site? What is going on in their life that made them come here?</p><p><em><strong>What emotional reaction are they going to have to this site? </strong></em></p><p>You&#8217;d better hope the answer to that last question isn&#8217;t <em>&#8220;nothing in particular&#8221; </em>because if it is, then you failed.</p><p>Study emotion, understand it, understand how it fits into what you&#8217;re doing and then use it to your benefit. Whether you use your understanding for noble purposes or not is entirely up to you, but take the next step and start designing emotions and experiences, not <em>just</em> aesthetics.</p><p><br
class="spacer_" /></p><p><em>This post was authored exclusively for WDD by <a
href="http://john.onolan.org/">John    O&#8217;Nolan</a>. John is also going to be authoring a short title on  designing emotion with WooThemes founder Adii Pienaar, so make sure you  follow <a
rel="nofollow" href="http://twitter.com/johnonolan" target="_blank">@JohnONolan</a> on twitter for updates!</em></p><p><em> </em><em><strong>What do you think? Have you come across any really good examples of companies instilling emotions in users? Better yet, have you used any techniques like these yourself and had success? Let us know in the comments below!</strong></em></p><p><em><br
/> </em></p><p><br/><br
/><table
width="100%" style="border-top:1px solid #d7d7d7; border-bottom:1px solid #d7d7d7;" height="20"><tr><td
valign="center"> <a
href="http://www.mightydeals.com/deal/wpbusinessbundle.html?ref=inwidget"><font
face="Arial" size="3" color="#e64f32"><b>Never Ending WordPress Business Bundle &#8211; only $14!</b></font></a></td><td
width="90"> <a
href="http://www.mightydeals.com/?ref=inwidget"><br
/> <img
src="http://mightydeals.com/web/images/widget-logo.png" height="40" width="90" border="0"  /><br
/> </a></td></tr></table><p><br/></p> <a
href="http://www.webdesignerdepot.com/2010/08/stop-designing-aesthetics-start-designing-emotions/">Source</a><style type="text/css">
 p img {display:inline-block; margin-right:10px;}
.alignleft {float:left;}
p.showcase {clear:both;}
body#browserfriendly p, body#podcast p, div#emailbody p{margin:0;}
</style>]]></content:encoded> <wfw:commentRss>http://www.webdesignerdepot.com/2010/08/stop-designing-aesthetics-start-designing-emotions/feed/</wfw:commentRss> <slash:comments>29</slash:comments> </item> <item><title>Fantastic Content Sliders for your Inspiration</title><link>http://www.webdesignerdepot.com/2010/03/fantastic-content-sliders-for-your-inspiration/</link> <comments>http://www.webdesignerdepot.com/2010/03/fantastic-content-sliders-for-your-inspiration/#comments</comments> <pubDate>Thu, 04 Mar 2010 16:48:27 +0000</pubDate> <dc:creator>Walter</dc:creator> <category><![CDATA[Usability]]></category> <category><![CDATA[User Interface]]></category> <category><![CDATA[Web Design]]></category> <category><![CDATA[content sliders]]></category> <category><![CDATA[navigation]]></category> <category><![CDATA[ui]]></category><guid
isPermaLink="false">http://www.webdesignerdepot.com/?p=15758</guid> <description><![CDATA[Content sliders are extremely versatile forms of navigation that can be used to display all sorts of information, such as images, popular posts, social information and product features. Some have automatic slideshow capabilities or buttons to scroll sideways or up and down, and most of them feature a transition effect, usually a slide motion. Sliders [...]]]></description> <content:encoded><![CDATA[<p
align="left"><a
href="http://www.webdesignerdepot.com/2010/03/fantastic-content-sliders-for-your-inspiration/"><img
class="alignleft" src="http://netdna.webdesignerdepot.com/uploads/content_sliders/thumb.jpg" alt="" width="200" height="160" /></a><strong>Content sliders</strong> are extremely versatile forms of navigation that can be used to display all sorts of information, such as images, popular posts, social information and product features.</p><p
align="left">Some have automatic slideshow capabilities or buttons to scroll sideways or up and down, and most of them feature a transition effect, usually a slide motion.</p><p
align="left">Sliders can be <strong>great focal points</strong> on websites and blogs as they instantly draw the audience&#8217;s attention and provide for an easy and sleek way for visitors to interact with a lot of information that can be sorted through quickly.</p><p
align="left">In this post, we have compiled a massive amount of <strong>content slider examples</strong> that you can use for inspiration on your own websites. Enjoy!<span
id="more-15758"></span></p><h1>Violet</h1><p><a
href="http://www.violet.net/"><img
src="http://netdna.webdesignerdepot.com/uploads/content_sliders/violet.jpg" border="0" alt="" width="615" height="239" /></a></p><p><br
class="spacer_" /></p><h1>Kodu</h1><p><a
href="http://www.kodu.co.uk/"><img
src="http://netdna.webdesignerdepot.com/uploads/content_sliders/kodu.jpg" border="0" alt="" width="615" height="278" /></a></p><p><br
class="spacer_" /></p><h1>Teoskaffa</h1><p><a
href="http://www.teoskaffa.com/"><img
src="http://netdna.webdesignerdepot.com/uploads/content_sliders/teoskaffa.jpg" border="0" alt="" width="615" height="397" /></a></p><p><br
class="spacer_" /></p><h1>Tea Round App</h1><p><a
href="http://www.tearoundapp.com/"><img
src="http://netdna.webdesignerdepot.com/uploads/content_sliders/tearoundapp.jpg" border="0" alt="" width="615" height="294" /></a></p><p><br
class="spacer_" /></p><h1>Dailymile</h1><p><a
href="http://www.dailymile.com/"><img
src="http://netdna.webdesignerdepot.com/uploads/content_sliders/dailymile.jpg" border="0" alt="" width="615" height="245" /></a></p><p><br
class="spacer_" /></p><h1>The Great Bearded Reef</h1><p><a
href="http://www.thegreatbeardedreef.com/"><img
src="http://netdna.webdesignerdepot.com/uploads/content_sliders/thegreatbeardreef.jpg" border="0" alt="" width="615" height="346" /></a></p><p><br
class="spacer_" /></p><h1>Templatica</h1><p><a
href="http://templatica.com/"><img
src="http://netdna.webdesignerdepot.com/uploads/content_sliders/templetica.jpg" border="0" alt="" width="615" height="361" /></a></p><p><br
class="spacer_" /></p><h1>Iceberg</h1><p><a
href="http://www.geticeberg.com/"><img
src="http://netdna.webdesignerdepot.com/uploads/content_sliders/geticeberg.jpg" border="0" alt="" width="615" height="316" /></a></p><p><br
class="spacer_" /></p><h1>Daniel Stenberg</h1><p><a
href="http://www.dantestyle.se/"><img
src="http://netdna.webdesignerdepot.com/uploads/content_sliders/dantestyle.se.jpg" border="0" alt="" width="615" height="285" /></a></p><p><br
class="spacer_" /></p><h1>Flourish Web Design</h1><p><a
href="http://www.floridaflourish.com/"><img
src="http://netdna.webdesignerdepot.com/uploads/content_sliders/floridaflourish.jpg" border="0" alt="" width="615" height="334" /></a></p><p><br
class="spacer_" /></p><h1>Howarths</h1><p><a
href="http://howarths.nl/"><img
src="http://netdna.webdesignerdepot.com/uploads/content_sliders/howarths.nl.jpg" border="0" alt="" width="615" height="562" /></a></p><p><br
class="spacer_" /></p><h1>Andy Shaw</h1><p><a
href="http://andyshaw.me/"><img
src="http://netdna.webdesignerdepot.com/uploads/content_sliders/andyshaw.me.jpg" border="0" alt="" width="615" height="347" /></a></p><p><br
class="spacer_" /></p><h1>Suki</h1><p><a
href="http://suki.co.il/"><img
src="http://netdna.webdesignerdepot.com/uploads/content_sliders/suki.jpg" border="0" alt="" width="615" height="355" /></a></p><p><br
class="spacer_" /></p><h1>The Horizontal Way</h1><p><a
href="http://www.thehorizontalway.com/"><img
src="http://netdna.webdesignerdepot.com/uploads/content_sliders/thehorizontalway.jpg" border="0" alt="" width="615" height="278" /></a></p><p><br
class="spacer_" /></p><h1>MetaLab</h1><p><a
href="http://www.metalabdesign.com/"><img
src="http://netdna.webdesignerdepot.com/uploads/content_sliders/metalab.jpg" border="0" alt="" width="615" height="441" /></a></p><p><br
class="spacer_" /></p><h1>Digital Convulsions</h1><p><a
href="http://www.dconvulsions.com/"><img
src="http://netdna.webdesignerdepot.com/uploads/content_sliders/dconvulsions.jpg" border="0" alt="" width="615" height="400" /></a></p><p><br
class="spacer_" /></p><h1>SlideDeck</h1><p><a
href="http://www.slidedeck.com/"><img
src="http://netdna.webdesignerdepot.com/uploads/content_sliders/slidedeck.jpg" border="0" alt="" width="615" height="244" /></a></p><p><br
class="spacer_" /></p><h1>Seventy7</h1><p><a
href="http://seventy7.ca/"><img
src="http://netdna.webdesignerdepot.com/uploads/content_sliders/seventy7.ca.jpg" alt="" width="615" height="263" /></a></p><p><br
class="spacer_" /></p><h1>Richie Qilayout</h1><p><a
href="http://qilayout.com/"><img
src="http://netdna.webdesignerdepot.com/uploads/content_sliders/qilayout.jpg" border="0" alt="" width="615" height="247" /></a></p><p><br
class="spacer_" /></p><h1>Auxiliary  Design Co.</h1><p><a
href="http://www.yourauxiliary.com/"><img
class="image-border" src="http://netdna.webdesignerdepot.com/uploads/content_sliders/yourauxiliary.jpg" border="0" alt="" width="615" height="405" /></a></p><p><br
class="spacer_" /></p><h1>Made By Elephant</h1><p><a
href="http://madebyelephant.com/"><img
src="http://netdna.webdesignerdepot.com/uploads/content_sliders/madebyelephant.jpg" alt="" width="615" height="301" /></a></p><p><br
class="spacer_" /></p><h1>MyGoLocker</h1><p><a
href="http://www.mygolocker.com/"><img
src="http://netdna.webdesignerdepot.com/uploads/content_sliders/mygolocker.jpg" alt="" width="615" height="235" /></a></p><p><br
class="spacer_" /></p><h1>Icon Designer</h1><p><a
href="http://icondesigner.net/"><img
src="http://netdna.webdesignerdepot.com/uploads/content_sliders/icondesigner.jpg" alt="" width="615" height="246" /></a></p><p><br
class="spacer_" /></p><h1>Food, Inc</h1><p><a
href="http://www.foodincmovie.com/"><img
src="http://netdna.webdesignerdepot.com/uploads/content_sliders/foodincmovie.jpg" alt="" width="615" height="376" /></a></p><p><br
class="spacer_" /></p><h1>Sketchen</h1><p><a
href="http://www.sketchen.com/"><img
src="http://netdna.webdesignerdepot.com/uploads/content_sliders/sketchen.jpg" alt="" width="615" height="286" /></a></p><p><br
class="spacer_" /></p><h1>Electronics Arts</h1><p><a
href="http://www.ea.com/"><img
src="http://netdna.webdesignerdepot.com/uploads/content_sliders/ea.jpg" alt="" width="615" height="451" /></a></p><p><br
class="spacer_" /></p><h1>Eric Johansson</h1><p><a
href="http://www.ericj.se/"><img
src="http://netdna.webdesignerdepot.com/uploads/content_sliders/ericj.se.jpg" alt="" width="615" height="232" /></a></p><p><br
class="spacer_" /></p><h1>Lodjixmedia</h1><p><a
href="http://lodjixmedia.net/"><img
src="http://netdna.webdesignerdepot.com/uploads/content_sliders/lodjixmedia.jpg" alt="" width="615" height="256" /></a></p><p><br
class="spacer_" /></p><h1>Holdifre</h1><p><a
href="http://holdfire.net/"><img
src="http://netdna.webdesignerdepot.com/uploads/content_sliders/holdifre.jpg" alt="" width="615" height="214" /></a></p><p><br
class="spacer_" /></p><h1>Apple</h1><p><a
href="http://www.apple.com/"><img
src="http://netdna.webdesignerdepot.com/uploads/content_sliders/apple.jpg" alt="" width="615" height="286" /></a></p><p><br
class="spacer_" /></p><h1>Paramore Redd</h1><p><a
href="http://paramoreredd.com/"><img
src="http://netdna.webdesignerdepot.com/uploads/content_sliders/paramoreredd.jpg" alt="" width="615" height="206" /></a></p><p><br
class="spacer_" /></p><h1>Pixelounge</h1><p><a
href="http://pixelounge.info/"><img
src="http://netdna.webdesignerdepot.com/uploads/content_sliders/pixellounge.jpg" alt="" width="615" height="410" /></a></p><p><br
class="spacer_" /></p><h1>Benjamin David</h1><p><a
href="http://benjamindavid.cc/"><img
src="http://netdna.webdesignerdepot.com/uploads/content_sliders/benjamindavid.jpg" alt="" width="615" height="301" /></a></p><p><br
class="spacer_" /></p><h1>Lomotek Polymers</h1><p><a
href="http://www.lomotek.com/article/home"><img
src="http://netdna.webdesignerdepot.com/uploads/content_sliders/lomotek.jpg" alt="" width="615" height="189" /></a></p><p><br
class="spacer_" /></p><h1>TweepMe</h1><p><a
href="https://www.tweepme.com/"><img
src="http://netdna.webdesignerdepot.com/uploads/content_sliders/tweepme.jpg" alt="" width="615" height="319" /></a></p><p><br
class="spacer_" /></p><h1>Vegas Uncork&#8217;d</h1><p><a
href="http://www.vegasuncorked.com/"><img
src="http://netdna.webdesignerdepot.com/uploads/content_sliders/vegasuncorked.jpg" alt="" width="615" height="318" /></a></p><p><br
class="spacer_" /></p><h1>Nike</h1><p><a
href="http://www.nike.com/nikeos/p/nike/en_US/"><img
src="http://netdna.webdesignerdepot.com/uploads/content_sliders/nike.jpg" alt="" width="615" height="328" /></a></p><p><br
class="spacer_" /></p><h1>EnterRodaGata</h1><p><a
href="http://enterrodagata.aaum.pt/"><img
class="image-border" src="http://netdna.webdesignerdepot.com/uploads/content_sliders/enterrodagata.aaum.pt.jpg" alt="" width="615" height="399" /></a></p><p><br
class="spacer_" /></p><h1>Alienware</h1><p><a
href="http://www.alienware.com/"><img
src="http://netdna.webdesignerdepot.com/uploads/content_sliders/alienware.jpg" alt="" width="615" height="383" /></a></p><p><br
class="spacer_" /></p><h1>Also Design</h1><p><a
href="http://www.also-online.com/"><img
class="image-border" src="http://netdna.webdesignerdepot.com/uploads/content_sliders/also-online.jpg" alt="" width="615" height="443" /></a></p><p><br
class="spacer_" /></p><h1>Traffik</h1><p><a
href="http://www.playintraffik.com/"><img
src="http://netdna.webdesignerdepot.com/uploads/content_sliders/playingtraffik.jpg" alt="" width="615" height="287" /></a></p><p><br
class="spacer_" /></p><h1>Zendesk</h1><p><a
href="http://www.zendesk.com/"><img
src="http://netdna.webdesignerdepot.com/uploads/content_sliders/zendesk.jpg" alt="" width="615" height="250" /></a></p><p><br
class="spacer_" /></p><h1>Branded07</h1><p><a
href="http://www.branded07.com/"><img
src="http://netdna.webdesignerdepot.com/uploads/content_sliders/branded07.jpg" alt="" width="615" height="256" /></a></p><p><br
class="spacer_" /></p><h1>Helldesign</h1><p><a
href="http://helldesign.net/#projects%28wizehive%29"><img
src="http://netdna.webdesignerdepot.com/uploads/content_sliders/helldesign.jpg" alt="" width="615" height="348" /></a></p><p><br
class="spacer_" /></p><h1>Slice Machine</h1><p><a
href="http://www.slicemachine.com/"><img
src="http://netdna.webdesignerdepot.com/uploads/content_sliders/slicemachine.jpg" alt="" width="615" height="278" /></a></p><p><br
class="spacer_" /></p><h1>JP3 DESIGN</h1><p><a
href="http://www.jp3design.com/"><img
src="http://netdna.webdesignerdepot.com/uploads/content_sliders/jp3design.jpg" alt="" width="615" height="298" /></a></p><p><br
class="spacer_" /></p><h1>FKQ</h1><p><a
href="http://www.fkq.com/"><img
class="image-border" src="http://netdna.webdesignerdepot.com/uploads/content_sliders/fkq.jpg" alt="" width="615" height="309" /></a></p><p><br
class="spacer_" /></p><h1>ShoeGuru</h1><p><a
href="http://shoeguru.ca/"><img
src="http://netdna.webdesignerdepot.com/uploads/content_sliders/shoeguru.jpg" alt="" width="615" height="286" /></a></p><p><br
class="spacer_" /></p><h1>Go-On-Web</h1><p><a
href="http://go-on-web.com/"><img
src="http://netdna.webdesignerdepot.com/uploads/content_sliders/go-on-web.jpg" alt="" width="615" height="376" /></a></p><p><br
class="spacer_" /></p><h1>Tutorialzine</h1><p><a
href="http://tutorialzine.com/"><img
src="http://netdna.webdesignerdepot.com/uploads/content_sliders/tutorialzine.jpg" alt="" width="615" height="357" /></a></p><p><br
class="spacer_" /></p><h1>Dreamer Lines</h1><p><a
href="http://www.dreamerlines.lv/"><img
src="http://netdna.webdesignerdepot.com/uploads/content_sliders/dreamlines.jpg" alt="" width="615" height="338" /></a></p><p><br
class="spacer_" /></p><h1>Sunny Zheng</h1><p><a
href="http://www.mrsunnyz.com/"><img
src="http://netdna.webdesignerdepot.com/uploads/content_sliders/mrsunnyz.jpg" alt="" width="615" height="328" /></a></p><p><br
class="spacer_" /></p><h1>Visuall</h1><p><a
href="http://www.visuall.be/"><img
src="http://netdna.webdesignerdepot.com/uploads/content_sliders/visuall.be.jpg" alt="" width="615" height="310" /></a></p><p><br
class="spacer_" /></p><h1>Jarnheimer  Productions</h1><p><a
href="http://www.jarnheimer.com/"><img
src="http://netdna.webdesignerdepot.com/uploads/content_sliders/jarnheimer.jpg" alt="" width="615" height="382" /></a></p><p><br
class="spacer_" /></p><h1>Tracermedia</h1><p><a
href="http://www.tracermedia.com/"><img
src="http://netdna.webdesignerdepot.com/uploads/content_sliders/tracermedia.jpg" alt="" width="615" height="289" /></a></p><p><br
class="spacer_" /></p><h1>Robert Atlan</h1><p><a
href="http://www.robalan.com/"><img
src="http://netdna.webdesignerdepot.com/uploads/content_sliders/robalan.jpg" alt="" width="615" height="268" /></a></p><p><br
class="spacer_" /></p><h1>A Simple Measure</h1><p><a
href="http://www.asimplemeasure.com/"><img
src="http://netdna.webdesignerdepot.com/uploads/content_sliders/asimplemeasure.jpg" alt="" width="615" height="249" /></a></p><p><br
class="spacer_" /></p><h1>Sean Nieuwoudt</h1><p><a
href="http://sean-nieuwoudt.com/"><img
src="http://netdna.webdesignerdepot.com/uploads/content_sliders/sean-nieuwoudt.jpg" alt="" width="615" height="401" /></a></p><p><br
class="spacer_" /></p><h1>Front-End Design Conference</h1><p><a
href="http://frontenddesignconference.com/"><img
src="http://netdna.webdesignerdepot.com/uploads/content_sliders/frontenddesignconference.jpg" alt="" width="615" height="308" /></a></p><p><br
class="spacer_" /></p><h1>Coda</h1><p><a
href="http://www.panic.com/coda/"><img
src="http://netdna.webdesignerdepot.com/uploads/content_sliders/coda.jpg" alt="" width="615" height="323" /></a></p><p><br
class="spacer_" /></p><h1>Suberapps</h1><p><a
href="http://www.suberapps.com/"><img
src="http://netdna.webdesignerdepot.com/uploads/content_sliders/suberapps.jpg" alt="" width="615" height="319" /></a></p><p><br
class="spacer_" /></p><h1>Spundo</h1><p><a
href="http://www.spundo.com/"><img
src="http://netdna.webdesignerdepot.com/uploads/content_sliders/spundo.jpg" alt="" width="615" height="224" /></a></p><p><br
class="spacer_" /></p><h1>Hello Themes</h1><p><a
href="http://www.hellothemes.com/"><img
src="http://netdna.webdesignerdepot.com/uploads/content_sliders/hellothemes.jpg" alt="" width="615" height="266" /></a></p><p><br
class="spacer_" /></p><h1>Eighty8Four</h1><p><a
href="http://www.eighty8four.com/"><img
src="http://netdna.webdesignerdepot.com/uploads/content_sliders/eight8four.jpg" alt="" width="615" height="211" /></a></p><p><br
class="spacer_" /></p><h1>Miro</h1><p><a
href="http://www.getmiro.com/"><img
src="http://netdna.webdesignerdepot.com/uploads/content_sliders/getmiro.jpg" alt="" width="615" height="269" /></a></p><p><br
class="spacer_" /></p><h1>Deluge Studios</h1><p><a
href="http://www.delugestudios.com/"><img
src="http://netdna.webdesignerdepot.com/uploads/content_sliders/delugestudios.jpg" alt="" width="615" height="434" /></a></p><p><br
class="spacer_" /></p><h1>Microsoft</h1><p><a
href="http://www.microsoft.com/en/us/default.aspx"><img
src="http://netdna.webdesignerdepot.com/uploads/content_sliders/microsoft.jpg" alt="" width="615" height="229" /></a></p><p><br
class="spacer_" /></p><h1>Lucas Hirata</h1><p><a
href="http://www.lucashirata.com.br/"><img
src="http://netdna.webdesignerdepot.com/uploads/content_sliders/lucashirata.com.br.jpg" alt="" width="615" height="392" /></a></p><p><br
class="spacer_" /></p><h1>Threadless</h1><p><a
href="http://www.threadless.com/"><img
class="image-border" src="http://netdna.webdesignerdepot.com/uploads/content_sliders/threadless.jpg" alt="" width="615" height="512" /></a></p><p><br
class="spacer_" /></p><h1>Simplicity Law</h1><p><a
href="http://www.simplicitylaw.com/"><img
src="http://netdna.webdesignerdepot.com/uploads/content_sliders/simplicitylaw.jpg" alt="" width="615" height="243" /></a></p><p><br
class="spacer_" /></p><h1>Viewport</h1><p><a
href="http://labs.paulicio.us/viewport/"><img
src="http://netdna.webdesignerdepot.com/uploads/content_sliders/viewport.jpg" alt="" width="615" height="431" /></a></p><p><br
class="spacer_" /></p><p><br
class="spacer_" /></p><h1>Sprinkle Penny</h1><p><a
href="http://www.sprinklepenny.com/"><img
src="http://netdna.webdesignerdepot.com/uploads/content_sliders/sprinklepenny.jpg" alt="" width="615" height="190" /></a></p><p><br
class="spacer_" /></p><h1>GoBible</h1><p><a
href="http://gobible.com/index.html"><img
src="http://netdna.webdesignerdepot.com/uploads/content_sliders/gobible.jpg" alt="" width="615" height="242" /></a></p><p><br
class="spacer_" /></p><h1>Arteria Plastica</h1><p><a
href="http://www.arteriaplastica.com/"><img
src="http://netdna.webdesignerdepot.com/uploads/content_sliders/arteriaplastica.jpg" alt="" width="615" height="353" /></a></p><p><br
class="spacer_" /></p><h1>Wall Swaps</h1><p><a
href="http://www.wallswaps.com/"><img
src="http://netdna.webdesignerdepot.com/uploads/content_sliders/wallswaps.jpg" alt="" width="615" height="397" /></a></p><p><br
class="spacer_" /></p><h1>Lift</h1><p><a
href="http://liftux.com/"><img
src="http://netdna.webdesignerdepot.com/uploads/content_sliders/lift.jpg" border="0" alt="" width="615" height="386" /></a></p><p><br
class="spacer_" /></p><h1>8Interactive</h1><p><a
href="http://8interactive.com/"><img
src="http://netdna.webdesignerdepot.com/uploads/content_sliders/8interactive.jpg" alt="" width="615" height="458" /></a></p><p><br
class="spacer_" /></p><h1>Rapid Xhtml</h1><p><a
href="http://www.rapidxhtml.com/"><img
src="http://netdna.webdesignerdepot.com/uploads/content_sliders/rapidxhtml.jpg" alt="" width="615" height="343" /></a></p><p><br
class="spacer_" /></p><h1>Find Me By IP</h1><p><a
href="http://www.findmebyip.com/#target-selector"><img
src="http://netdna.webdesignerdepot.com/uploads/content_sliders/findmebyip.jpg" alt="" width="615" height="250" /></a></p><p><br
class="spacer_" /></p><h1>Cu3Er</h1><p><a
href="http://www.progressivered.com/cu3er/"><img
class="image-border" src="http://netdna.webdesignerdepot.com/uploads/content_sliders/cu3er.jpg" alt="" width="615" height="385" /></a></p><p><br
class="spacer_" /></p><h1>Domenico Tedone Design</h1><p><a
href="http://s19382.gridserver.com/"><img
src="http://netdna.webdesignerdepot.com/uploads/content_sliders/s19382.gridserver.jpg" alt="" width="615" height="494" /></a></p><p><br
class="spacer_" /></p><h1>NETWiSE Strategies</h1><p><a
href="http://www.netwise.cc/"><img
src="http://netdna.webdesignerdepot.com/uploads/content_sliders/netwise.cc.jpg" alt="" width="615" height="346" /></a></p><p><br
class="spacer_" /></p><h1>Redesign Unit</h1><p><a
href="http://www.redesignunit.com/"><img
src="http://netdna.webdesignerdepot.com/uploads/content_sliders/redesignunit.jpg" alt="" width="615" height="365" /></a></p><p><br
class="spacer_" /></p><h1>Josh Smith Portfolio</h1><p><a
href="http://www.joshsmith.ca/"><img
src="http://netdna.webdesignerdepot.com/uploads/content_sliders/joshsmith.ca.jpg" alt="" width="615" height="365" /></a></p><p><br
class="spacer_" /></p><h1>Mint</h1><p><a
href="http://www.mint.com/"><img
src="http://netdna.webdesignerdepot.com/uploads/content_sliders/mint.jpg" alt="" width="615" height="304" /></a></p><p><br
class="spacer_" /></p><h1>Department of Infrastructure and Planning</h1><p><a
href="http://forthegreenergood.qld.gov.au/"><img
class="image-border" src="http://netdna.webdesignerdepot.com/uploads/content_sliders/forthegreenergood.qld.gov.au.jpg" alt="" width="615" height="243" /></a></p><p><br
class="spacer_" /></p><h1>Galan</h1><p><a
href="http://www.galandesign.com/"><img
src="http://netdna.webdesignerdepot.com/uploads/content_sliders/galandesign.jpg" alt="" width="615" height="278" /></a></p><p><br
class="spacer_" /></p><h1>Larkef</h1><p><a
href="http://www.larkef.com/"><img
src="http://netdna.webdesignerdepot.com/uploads/content_sliders/larkef.jpg" alt="" width="615" height="339" /></a></p><p><br
class="spacer_" /></p><h1>Direct Design</h1><p><a
href="http://www.directdesign.it/"><img
src="http://netdna.webdesignerdepot.com/uploads/content_sliders/directdesign.it.jpg" alt="" width="615" height="286" /></a></p><p><br
class="spacer_" /></p><h1>Nealite</h1><p><a
href="http://nealite.fr/"><img
src="http://netdna.webdesignerdepot.com/uploads/content_sliders/nealite.fr.jpg" alt="" width="615" height="239" /></a></p><p><br
class="spacer_" /></p><h1>World Wildlife Fund</h1><p><a
href="http://www.worldwildlife.org/"><img
src="http://netdna.webdesignerdepot.com/uploads/content_sliders/worldwildlife.jpg" alt="" width="615" height="204" /></a></p><p><br
class="spacer_" /></p><h1>Fat-Man Collective</h1><p><a
href="http://www.fat-man-collective.com/hello.php"><img
src="http://netdna.webdesignerdepot.com/uploads/content_sliders/fat-man-collective.jpg" alt="" width="615" height="321" /></a></p><p><br
class="spacer_" /></p><h1>Netdreams</h1><p><a
href="http://www.netdreams.co.uk/"><img
src="http://netdna.webdesignerdepot.com/uploads/content_sliders/netdreams.co.uk.jpg" alt="" width="615" height="172" /></a></p><p><br
class="spacer_" /></p><h1>Nuemedia</h1><p><a
href="http://www.nue-media.com/"><img
src="http://netdna.webdesignerdepot.com/uploads/content_sliders/nue-media.jpg" alt="" width="615" height="310" /></a></p><p><br
class="spacer_" /></p><p><br
class="spacer_" /></p><h1>Viljami Salminen</h1><p><a
href="http://graphik.fi/"><img
src="http://netdna.webdesignerdepot.com/uploads/content_sliders/graphik.fi.jpg" alt="" width="615" height="309" /></a></p><p><br
class="spacer_" /></p><h1>OSDN</h1><p><a
href="http://osdnetwork.org/"><img
src="http://netdna.webdesignerdepot.com/uploads/content_sliders/osdnetwork.jpg" alt="" width="615" height="266" /></a></p><p><br
class="spacer_" /></p><h1>Chantyce</h1><p><a
href="http://www.chantyce.com/"><img
src="http://netdna.webdesignerdepot.com/uploads/content_sliders/chantyce.jpg" alt="" width="615" height="301" /></a></p><p><br
class="spacer_" /></p><h1>Giraffe Restaurants</h1><p><a
href="http://www.giraffe.net/"><img
src="http://netdna.webdesignerdepot.com/uploads/content_sliders/giraffe.jpg" alt="" width="615" height="224" /></a></p><p><br
class="spacer_" /></p><h1>Add Noise</h1><p><a
href="http://www.addnoise.nl/"><img
src="http://netdna.webdesignerdepot.com/uploads/content_sliders/addnoise.nl.jpg" alt="" width="615" height="280" /></a></p><p><br
class="spacer_" /></p><h1>Nosotros</h1><p><a
href="http://nosotroshq.com/"><img
src="http://netdna.webdesignerdepot.com/uploads/content_sliders/nosotroshq.jpg" alt="" width="615" height="355" /></a></p><p><br
class="spacer_" /></p><h1>HABITAT 4D</h1><p><a
href="http://www.habitat4d.ro/"><img
src="http://netdna.webdesignerdepot.com/uploads/content_sliders/habitat4d.ro.jpg" alt="" width="615" height="383" /></a></p><p><br
class="spacer_" /></p><h1>Go Site Wave</h1><p><a
href="http://www.gositewave.com/"><img
src="http://netdna.webdesignerdepot.com/uploads/content_sliders/gositewave.jpg" alt="" width="615" height="267" /></a></p><p><em><strong><br
/> </strong></em></p><p><em><strong>Do you use content sliders? How do they affect your website usability?</strong></em></p><p><br
class="spacer_" /></p><p><em><strong><br
/> </strong></em></p><p><br/><br
/><table
width="100%" style="border-top:1px solid #d7d7d7; border-bottom:1px solid #d7d7d7;" height="20"><tr><td
valign="center"> <a
href="http://www.mightydeals.com/deal/wpbusinessbundle.html?ref=inwidget"><font
face="Arial" size="3" color="#e64f32"><b>Never Ending WordPress Business Bundle &#8211; only $14!</b></font></a></td><td
width="90"> <a
href="http://www.mightydeals.com/?ref=inwidget"><br
/> <img
src="http://mightydeals.com/web/images/widget-logo.png" height="40" width="90" border="0"  /><br
/> </a></td></tr></table><p><br/></p> <a
href="http://www.webdesignerdepot.com/2010/03/fantastic-content-sliders-for-your-inspiration/">Source</a><style type="text/css">
 p img {display:inline-block; margin-right:10px;}
.alignleft {float:left;}
p.showcase {clear:both;}
body#browserfriendly p, body#podcast p, div#emailbody p{margin:0;}
</style>]]></content:encoded> <wfw:commentRss>http://www.webdesignerdepot.com/2010/03/fantastic-content-sliders-for-your-inspiration/feed/</wfw:commentRss> <slash:comments>82</slash:comments> </item> <item><title>Wikipedia Redesign: What&#8217;s in Store?</title><link>http://www.webdesignerdepot.com/2009/12/wikipedia-redesign-whats-in-store/</link> <comments>http://www.webdesignerdepot.com/2009/12/wikipedia-redesign-whats-in-store/#comments</comments> <pubDate>Mon, 07 Dec 2009 17:44:31 +0000</pubDate> <dc:creator>Walter</dc:creator> <category><![CDATA[Design]]></category> <category><![CDATA[Usability]]></category> <category><![CDATA[Web Design]]></category> <category><![CDATA[redesign]]></category> <category><![CDATA[wikipedia]]></category> <category><![CDATA[wikipedia usability initiative]]></category><guid
isPermaLink="false">http://www.webdesignerdepot.com/?p=13850</guid> <description><![CDATA[Wikipedia is currently undergoing a much needed redesign to improve the user experience. Anyone can preview this redesign by creating an account, logging in and then clicking the &#8220;Try Beta&#8221; link at the top right of any page. The &#8220;Wikipedia Usability Initiative&#8221; has been divided into two phases. Phase 1 was the prototype phase, and [...]]]></description> <content:encoded><![CDATA[<p><a
rel="nofollow" href="http://www.webdesignerdepot.com/2009/12/wikipedia-redesign-whats-in-store/" target="_blank"><img
class="alignleft" src="http://netdna.webdesignerdepot.com/uploads/wikipedia/thumb.jpg" alt="" width="200" height="160" /></a><strong>Wikipedia</strong> is currently undergoing a much needed redesign to improve the user experience.</p><p>Anyone can preview this redesign by <a
href="http://en.wikipedia.org/w/index.php?title=Special:UserLogin">creating an account, logging in</a> and then clicking the<em><strong> &#8220;Try Beta&#8221;</strong></em> link at the top right of any page.</p><p>The <em>&#8220;Wikipedia Usability Initiative&#8221;</em> has been divided into two phases. Phase 1 was the prototype phase, and it ended in the summer of 2009.</p><p>The project team is currently in the second phase, which is the development and testing phase.</p><p>The project has also been separated into four <a
href="http://usability.wikimedia.org/wiki/Releases">releases</a>; as of the writing of this article, the second release (Babaco) is currently in development.</p><p>In this article, we&#8217;ll discuss <strong>Wikipedia&#8217;s design changes</strong> and the reasons behind them.</p><p><span
id="more-13850"></span></p><p>The Wikipedia Usability Initiative is scheduled to be ready in the spring of 2010. More information about the project can be found <a
href="http://usability.wikimedia.org/wiki/Main_Page">here</a>.</p><p>The redesign is focused on <strong>usability</strong>. Although no drastic changes have been made, the overall look and feel of the website is much cleaner and more modern. The revamped editing interface is a major upgrade that Wikipedia editors will surely get excited about.</p><p>Like many small-scale operations, Wikipedia does not have the budget to systematically test how visitors use the website. Instead, it relies on feedback from users to pinpoint and address issues.</p><p><br
class="spacer_" /></p><h1>Cleaned Up</h1><p>Our first impression of the beta redesign is that it looks quite sharp and tidy. The layout is still fundamentally the same; this redesign likely won&#8217;t cause the same outrage that <a
href="http://www.techcrunch.com/2009/03/19/facebook-polls-users-on-redesign-94-hate-it/">Facebook</a> stirred with its redesign back in March 2009.</p><p>The most obvious change is that the various components on the page are no longer confined to their own box. The navigation and main content areas are not closed in, and they extend all the way to the edge of the browser window.</p><p>The other obvious change is that Wikipedia has retired the background image of the open book. This cleans up the design significantly and makes the logo look much sharper.</p><p><strong>Old design:</strong></p><p><img
src="http://netdna.webdesignerdepot.com/uploads/wikipedia/wikipedia_old_logo.jpg" alt="" /></p><p><strong><br
/> </strong></p><p><strong>New design:</strong></p><p><img
class="alignnone" src="http://netdna.webdesignerdepot.com/uploads/wikipedia/wikipedia_new_logo.jpg" alt="" width="615" height="450" /></p><p><br
class="spacer_" /></p><h1>Slight Change in Colors</h1><p>On the whole, <strong>the new design looks softer</strong>. The navigation links in the left sidebar are now slightly bigger and easier to read. The link colors throughout have been altered slightly to make them less vibrant.</p><p>The old link color (left) compared to the new link color (right):<img
src="http://netdna.webdesignerdepot.com/uploads/wikipedia/link_colours.jpg" alt="" /></p><p><br
class="spacer_" /></p><p>The old visited link color (left) compared to the new one (right):<img
src="http://netdna.webdesignerdepot.com/uploads/wikipedia/visited_link_colours.jpg" alt="" /></p><p>Changing the visited link color from purple to dark blue goes a long way to making the website look more modern. It also simplifies the color scheme and makes the appearance more professional.</p><p><br
class="spacer_" /></p><h1>Search Bar Relocation</h1><p>The one change that might trip up regular visitors is the relocation of the search bar.</p><p>It is no longer nestled in the middle of the navigation section. It has been moved to the top-right of the page. This placement has become standard on many websites and is where people look first when they want to perform a search.</p><p><strong>The new location of the search bar:</strong></p><p><img
src="http://netdna.webdesignerdepot.com/uploads/wikipedia/search_bar_moved.jpg" alt="" /></p><p><br
class="spacer_" /></p><h1>Reorganized Tabs</h1><p>The tabs have also been reorganized. They&#8217;ve been given a new look and are now easier to spot. Dividing them into two groups makes their structure more logical. The fading top of the tabs opens up the page, too.</p><p><strong>Old design:</strong></p><p><img
src="http://netdna.webdesignerdepot.com/uploads/wikipedia/wikipedia_old_tabs.png" alt="" /></p><p><br
class="spacer_" /></p><p><strong>New design:</strong></p><p><img
src="http://netdna.webdesignerdepot.com/uploads/wikipedia/wikipedia_new_tabs.png" alt="" /></p><p><br
class="spacer_" /></p><h1>Page Editing</h1><p>The new page-editing interface is wonderful. The mixture of textual and graphic icons and the grouping of editing options makes editing much easier.</p><p>To figure out what each button did before, the user had to hover over the unintuitive icon and wait for the tooltip to pop up; not anymore. And the new panel to the right of the text area helps users navigate the page.</p><p><strong>Old editing interface:</strong></p><p><img
src="http://netdna.webdesignerdepot.com/uploads/wikipedia/old_edit_main.jpg" alt="" /></p><p><br
class="spacer_" /></p><p><strong>New editing interface:</strong></p><p><img
src="http://netdna.webdesignerdepot.com/uploads/wikipedia/new_edit_main.jpg" alt="" /></p><p><br
class="spacer_" /></p><p>To turn on the new features, go to your &#8220;Preferences,&#8221; and then click on the &#8220;Editing&#8221; tab. At the bottom, you&#8217;ll find some checkboxes labeled &#8220;Experimental.&#8221; <strong> </strong></p><p><strong>Enabling the experimental features:</strong></p><p><img
src="http://netdna.webdesignerdepot.com/uploads/wikipedia/new_experimental_features.jpg" alt="" /></p><p><br
class="spacer_" /></p><p>The latest release includes new dialog boxes for inserting links and tables. Because the text area can get a bit cluttered, these dialog boxes are handy for helping users focus on one task at a time.</p><p>The table dialog box could do with more functionality (such as allowing you to edit the contents of table cells), but this release is still in development, so I&#8217;ll wait to see if more comes before officially adding features to my wish list.</p><p><strong>The dialog box for inserting a link:</strong></p><p><img
src="http://netdna.webdesignerdepot.com/uploads/wikipedia/new_insert_link.jpg" alt="" /></p><p><strong>The dialog box for inserting a table:</strong></p><p><img
src="http://netdna.webdesignerdepot.com/uploads/wikipedia/new_insert_table.jpg" alt="" /></p><p><br
class="spacer_" /></p><h1>What&#8217;s Missing?</h1><p>Because the project is still in beta, now is the best time to suggest what else can be done to improve Wikipedia&#8217;s user interface. Here are my ideas:</p><ul><li><em><strong>AJAX BeautyTip preview on link hover</strong></em><br
/> It would be neat if a tooltip appeared, via the <a
href="http://www.lullabot.com/files/bt/bt-latest/DEMO/index.html">BeautyTip</a> jQuery plug-in, whenever you hovered over an internal link. The tooltip would contain the first paragraph of the linked article. The increase in bandwidth from this feature might be too big, but I&#8217;d still like to see it tested.</li><li><em><strong>Syntax coloring in the editing text area</strong></em><br
/> Working with code all in the same color is very difficult. The human eye has to scan the text linearly to find it wants. Visual hints would be a huge help. While we&#8217;re at it, the text area should also have a horizontal scroll bar so that things like tables look nicer in the code.</li><li><em><strong>Option to have fixed-width body text</strong></em><br
/> When I&#8217;m reading a long passage of text, I like to maximize my window to minimize distractions. As it is, I can&#8217;t do this because the lines of text become wider than my widescreen monitor. I would love to be able to fix the width of paragraphs to around 600 pixels to make reading easier.</li><li><em><strong>Increase visual weight of &#8220;Go&#8221; button</strong></em><br
/> The one change I&#8217;m against is making the &#8220;Go&#8221; button the same weight as the &#8220;Search&#8221; button. The old design weighted the &#8220;Go&#8221; button text a little heavier, making it obvious that hitting the &#8220;Enter&#8221; key was the same as clicking the &#8220;Go&#8221; button. The difference in weight was small enough that users could see the difference only by looking right at it. This should be brought back.</li></ul><p><br
class="spacer_" /></p><h1>Try It Out!</h1><p>The new design looks pretty good, but it&#8217;s not finished yet. I&#8217;m sure that the Wikipedia Usability Initiative team would appreciate everyone trying out the beta and sending feedback.</p><p>Wikipedia depends on its users to figure out how to improve the website, and I&#8217;m certain the Webdesigner Depot community can come up with some great ideas.</p><p>Lastly, consider <a
href="http://wikimediafoundation.org/wiki/Donate">donating to Wikipedia</a>. Because being able to read about <a
href="http://en.wikipedia.org/wiki/River_City_Ransom">old Nintendo games</a> without Evony ads littering the page is rather nice.</p><p><br
class="spacer_" /></p><p><em>Written exclusively for WDD by <a
href="http://www.sleepyhero.com/">Eli Penner</a>.</em></p><p><em><strong>What do you think of Wikipedia&#8217;s upcoming design? How would you improve the design?</strong></em></p><p><br
class="spacer_" /></p><p><br/><br
/><table
width="100%" style="border-top:1px solid #d7d7d7; border-bottom:1px solid #d7d7d7;" height="20"><tr><td
valign="center"> <a
href="http://www.mightydeals.com/deal/wpbusinessbundle.html?ref=inwidget"><font
face="Arial" size="3" color="#e64f32"><b>Never Ending WordPress Business Bundle &#8211; only $14!</b></font></a></td><td
width="90"> <a
href="http://www.mightydeals.com/?ref=inwidget"><br
/> <img
src="http://mightydeals.com/web/images/widget-logo.png" height="40" width="90" border="0"  /><br
/> </a></td></tr></table><p><br/></p> <a
href="http://www.webdesignerdepot.com/2009/12/wikipedia-redesign-whats-in-store/">Source</a><style type="text/css">
 p img {display:inline-block; margin-right:10px;}
.alignleft {float:left;}
p.showcase {clear:both;}
body#browserfriendly p, body#podcast p, div#emailbody p{margin:0;}
</style>]]></content:encoded> <wfw:commentRss>http://www.webdesignerdepot.com/2009/12/wikipedia-redesign-whats-in-store/feed/</wfw:commentRss> <slash:comments>31</slash:comments> </item> <item><title>Coding a Web Design for Speed and Quality</title><link>http://www.webdesignerdepot.com/2009/11/coding-a-web-design-for-speed-and-quality/</link> <comments>http://www.webdesignerdepot.com/2009/11/coding-a-web-design-for-speed-and-quality/#comments</comments> <pubDate>Thu, 12 Nov 2009 17:58:52 +0000</pubDate> <dc:creator>Walter</dc:creator> <category><![CDATA[Code]]></category> <category><![CDATA[Usability]]></category> <category><![CDATA[Web Development]]></category> <category><![CDATA[Coding]]></category><guid
isPermaLink="false">http://www.webdesignerdepot.com/?p=13155</guid> <description><![CDATA[The beauty of being a web designer is creating a detailed, creative, and original web design in Photoshop, without having to (for the most part) think about how it will be coded. During the design phase, it&#8217;s all about the look, and either the coding can be taken care of later, or be outsourced to [...]]]></description> <content:encoded><![CDATA[<p><a
href="http://www.webdesignerdepot.com/2009/11/coding-a-web-design-for-speed-and-quality/"><img
class="alignleft" src="http://netdna.webdesignerdepot.com/uploads/coding/thumb.jpg" alt="" width="200" height="160" /></a>The beauty of being a web designer is creating a detailed, creative, and original web design in <a
href="http://www.webdesignerdepot.com/category/photoshop/" target="_self">Photoshop</a>, without having to (for the most part) think about <strong>how it will be coded</strong>.</p><p>During the design phase, <strong>it&#8217;s all about the look</strong>, and either the coding can be taken care of later, or be outsourced to a developer.</p><p>Either way, not thinking about the development usability or functionality is a great way for a designer to not feel limited in the design process.</p><p>This is a great way of thinking, and can lead to the best designs. However, once it does need to be coded, we as designers are in a tricky spot.</p><p>In this article, you&#8217;ll find a few simple tips that can help designers learn <strong>basic</strong> <strong>XHTML/CSS conversion efficiently</strong> for a quick-loading website that is accurate to the original PSD.<span
id="more-13155"></span></p><p>We either must slice and code the designs ourselves, or turn away part of our profits to an outsourcing PSD to XHTML/CSS company or developer. As primarily designers, the second option is usually the best choice for the client, because it will provide the best results.</p><p>Sometimes though, as with smaller projects or otherwise, <strong>we need to code a website ourselves</strong>. Whatever the reason, it shouldn&#8217;t be a fall-back, or something that takes up too much time.</p><p><br
class="spacer_" /></p><h2>Doing it Yourself vs. Outsourcing</h2><p>This article is more targeted towards web designers, although hopefully those who are developers can take something away from it too. Focusing back onto the designers, though, it is common for many web designers not to like to code websites. <strong>We like to design</strong>. There are a few exceptions, but for the most part this is the attitude towards it.</p><p>Many designers have discovered <strong>the benefit of outsourcing</strong>: pay an outside company to slice and code your design, get it back in a few days, and save yourself the time and effort of doing it yourself.</p><p>If one is not experienced with coding a website efficiently enough, spending too much time on it may not be worth what you&#8217;ll be getting paid for on a project.</p><p>For example, if an inexperienced coder were to spend several hours trying to figure out how to code a design they just created, their time spent can easily be worth more than what it costs to just simply outsource the job.</p><p>Also, charging the client for the outsourcing work instead of your own labor can be cost effective for them, as well as time effective for yourself. (Oh, and you&#8217;ll be helping out the development community by giving them a bit of business too!)</p><p>There comes a time in every designer&#8217;s career, though, where it is just not practical to outsource a job. A few examples would be:</p><ul><li><em><strong>You&#8217;re just not at a strong financial point.</strong></em> <br
/> Especially for freelancers, strong financial months come and go. If you&#8217;re a bit low in the bank, it may not be the best option to spend $150 or so on outsourcing, when you could be paid the bit of extra for doing the work yourself. While the client would make up for the payment to the outsourcer as part of the project payment, that&#8217;s just making your finances break even for the development portion of the website. By doing it yourself, it&#8217;s that much more work, but it&#8217;s also that much more money in your pocket.</li><li><em><strong>It&#8217;s a small project.</strong></em> <br
/> Is the project under $1000? Is having over 1/10 of the project&#8217;s budget not go directly to you worth it? If outsourcing the coding portion too large of a percentage of the project, it is probably more practical to just have it done yourself. Also, smaller projects are likely simpler, so it doesn&#8217;t necessarily have to take a lot of time.</li><li><em><strong>When it needs special customer service or customization.</strong></em> <br
/> Some projects just need a bit more customer care, from you, the designer. Depending on both the client and the project, it may be best to break down the slicing and coding portion into more manageable pieces, with some pieces being variable upon the client&#8217;s opinion throughout the process. In any situation where you, the designer, would have to keep altering the code to fit the client&#8217;s needs after the initial website is coded, it is probably best to do the entire thing yourself.</li></ul><p>So it is up to you based on each project, each client, and each set of circumstances to decide whether to outsource the coding portion or not.</p><p>As a benefit to outsourcing, <strong>experienced coders can create an identical coded version to your PSD design</strong>, while maintaining loading speed and usability.</p><p>If you are in the situation where you are having/wanting to slice and code a website yourself, here are some general tips to 1) save you time so you don&#8217;t have to work for $2/hr and 2) provide better results for your client, as an experienced developer would, while still saving the outsourcing costs.</p><p><br
class="spacer_" /></p><h2>1. Slice Effectively</h2><p>Photoshop and Fireworks come with a built-in slicing tool that allows a designer to code a website directly into HTML. However, even modern versions of these pieces of software create table-based markup. This is not very useful for the modern web designer, of course.</p><p>That is why development and website coding is a separate practice that takes its own talent and experience. All web designs need some hand coding and a thought process behind it. No software can do it all for you.</p><p>Still, <strong>the slice tool in Photoshop and Fireworks can be put to good use for the development portion of the web design</strong>. The point is to know how to use the slice tool effectively.</p><p>Instead of delving into an entire slicing and coding tutorial here, a great tutorial over on nettuts+ can help many out: &#8220;<a
href="http://net.tutsplus.com/videos/screencasts/slice-and-dice-that-psd/">Slice and Dice that PSD</a>.&#8221; It goes over the basic thought processes, as well as the technical how-to, for slicing a web design the modern and correct way — while using the traditional slice tool.</p><p>It is in a chronological order, with different screencasts for each phase of the development process, as well as useful links to similar and additional screencasts.</p><p><a
href="http://net.tutsplus.com/videos/screencasts/slice-and-dice-that-psd/"><img
src="http://netdna.webdesignerdepot.com/uploads/coding/slice.jpg" alt="Slice Effectively" /></a></p><p>The first step is to view these tutorials, and to take the most important points from them: know what images to slice, how to optimize those images for the balance of quality and speed, and what elements of your PSD should be plain XHTML and CSS.</p><p>Just watching a more experienced developer&#8217;s process and explanation can help a designer with little slicing and coding experience witness a process that is more efficient.</p><p><br
class="spacer_" /></p><h2>2. Simplify CSS</h2><p>Sometimes, the first way one figures out how to use CSS to achieve a certain effect is not the best way to do it. If you find yourself creating too many custom classes, or complicated tactics otherwise, to achieve one effect, think of an alternative way to do it more efficiently.</p><p>For the most part, this comes with experience. The more you code a website and discover new techniques, the easier using CSS effectively will get.</p><p>For beginner&#8217;s ways on simplifying CSS, check out Woork&#8217;s article on &#8220;<a
href="http://woork.blogspot.com/2008/04/top-down-approach-to-simplify-your-css.html">Top-Down approach to simplify your CSS code</a>&#8220;.</p><p>The article shares tips on the balance of using CSS to create the basic wireframe and specific styling, how to reuse preset HTML elements effectively, and when it is appropriate to create your own classes or ID&#8217;s.</p><p><a
href="http://woork.blogspot.com/2008/04/top-down-approach-to-simplify-your-css.html"><img
src="http://netdna.webdesignerdepot.com/uploads/coding/simplecss.jpg" alt="Simple CSS" /></a></p><p><br
class="spacer_" /></p><h2>3. Use CSS Shorthand and Minimize HTML Markup</h2><p>The smaller a file size is, the quicker it is to load, and it&#8217;s as simple as that. Using CSS shorthand and minimizing the length of XHTML markup by reusing elements is a great way to do this.</p><p>Coding an entire website has to be a balance of markup and styling that markup with CSS. Markup should be used for structure and CSS should be used for styling, so a great way to find that balance is to keep this in mind.</p><p>Other than this, the practice requires just understanding the technicalities of CSS shorthand, as well as gaining experience.</p><p>Check out a few of the tutorials below for mastering CSS shorthand:</p><ul
class="tight_list"><li><a
href="http://articles.sitepoint.com/article/introduction-css-shorthand">Introduction to CSS Shorthand</a></li><li><a
href="http://www.456bereastreet.com/archive/200502/efficient_css_with_shorthand_properties/">Efficient CSS with shorthand properties</a></li><li><a
href="http://www.leigeber.com/2008/04/css-shorthand-cheat-sheet/">CSS Shorthand Cheat Sheet</a></li></ul><p><a
href="http://articles.sitepoint.com/article/introduction-css-shorthand"><img
src="http://netdna.webdesignerdepot.com/uploads/coding/cssshorthand.jpg" alt="CSS Shorthand" /></a></p><p>Also removing unnecessary whitespace can help the loading speed of markup and CSS files. Just like with a minimized JavaScript file (such as jquery.min.js), smaller files will make loading time more efficient, allowing the processor to read them more quickly.</p><p>As with CSS and markup, though, it&#8217;s not practical to remove all whitespace for editing and management purposes.</p><p>Instead, get into a practice of indenting and using line breaks only when necessary. Also remove any comments within the markup and stylesheet that are not necessary to the maintenance of the website.</p><p><br
class="spacer_" /></p><h2>4. Smush.it</h2><p>Use a tool like <a
href="http://developer.yahoo.com/yslow/smushit">Yahoo&#8217;s Smush.it</a> to crunch any images even further. A tool like this uses a compression algorithm that reduces the file size significantly, without sacrificing image quality. An average of around 40% reduction of all images can make for a huge difference in the loading time of a website.</p><p>Just simply load any images for the website, after they&#8217;ve been optimized originally in Photoshop, into the Smush.it application. It will give you a new list of images for download, explaining how much space was saved, and how.</p><p><a
href="http://developer.yahoo.com/yslow/smushit/"><img
src="http://netdna.webdesignerdepot.com/uploads/coding/smushit.jpg" alt="Smush.it" /></a></p><p><br
class="spacer_" /></p><h2>5. Pay Attention to CSS &amp; Markup Order</h2><p>Having the structural elements before the content elements, or the blockquote style before the paragraph style will not make a stylesheet load any quicker. However, <strong>a stylesheet does load in the order it is presented in the stylesheet</strong>, so one can use that to make a website &#8216;appear&#8217; as though it is loading faster.</p><p>For example, if in a stylesheet, all of the content, images, and text styling were first defined, these elements would load before any backgrounds, structural elements, or design imagery were loaded.</p><p>Because of this, it appears as though the web design is loading slightly slower than if we saw the background and structure first.</p><p>With structure and main imagery first, the viewer has something to focus on for those seconds where content is still loading.</p><p><br
class="spacer_" /></p><h2>6. Know When to Use Client-Side or Server-Side Scripting</h2><p>For basic projects, web designers probably won&#8217;t be getting into too much programming. However, some scripting may be required for a simple contact form or for special navigation effects.</p><p>Whatever it is for, two types of scripting languages can be used: client-side (where the scripting language runs on the user&#8217;s browser), or server-side (the scripting language runs on the server).</p><p><img
src="http://netdna.webdesignerdepot.com/uploads/coding/scripting.jpg" alt="Scripting" /></p><p>JavaScript, and any library under it, is the most common client-side scripting language. Because it runs locally on the user&#8217;s browser, it does not have to run all the way to the server to do its processing, therefore making it faster. Server-side scripting is slightly slower, but runs just fine in small doses and when used appropriately.</p><p>Use server-side scripting for anything that requires a database, or anything that is necessary to the website&#8217;s purpose. Since a user can disable JavaScript, but can&#8217;t disable a server-side language, server-side scripting is safe to use for any website necessities.</p><p>For example, a contact form, although it&#8217;s light and may not require a database, is best used with a server-side language because it is still accessible for someone with JavaScript disabled.</p><p>Overall, most websites that require any additional scripting should have a balance of both. Some smaller websites may only need one or the other, but it is important not to just use one for the sake of it. Know when, and why, to use each.</p><p><br
class="spacer_" /></p><h2>7. Last but Not Least, Validate</h2><p>This is obvious to most of us, but as with any article like this, it must be said: throughout the process of coding, and when everything is said and done, validate CSS and XHTML code.</p><p>We all know the benefits of validation, in that it can make various browsers render similarly, make web pages load faster, and is a general error checker for semantic code.</p><p><a
href="http://jigsaw.w3.org/css-validator/"><img
src="http://netdna.webdesignerdepot.com/uploads/coding/validate.jpg" alt="Validate" /></a></p><p>An additional benefit to going through this process, though, is to explore new techniques for handling CSS code and markup.</p><p>If you&#8217;ve implemented a certain effect into a web design that doesn&#8217;t validate or gives a warning, chances are W3 has a reason for this. These are great moments for researching other options to create the same effect, but in a better, more validated way.</p><p><br
class="spacer_" /></p><h2>Wrapping Up</h2><p>Some designers fear that they must sacrifice quality in the imagery of the design when coding to XHTML/CSS in order to make a fast-loading website — but that&#8217;s just not true.</p><p>There are many ways to code intelligently that can create for a <strong>user-friendly, fast-loading website</strong> that meets a designer&#8217;s quality. Using these tips can help, but there are many more things to learn.</p><p>Remember, if you are an inexperienced slicer and coder, it may be slow-going at first, especially when still in the learning process. We may know XHTML and CSS, but it is an entirely different skill to learn how to do it effectively. Just as we had to when learning design, <strong>we must learn how to code beautifully as well</strong>.</p><p><br
class="spacer_" /></p><p><em>Written exclusively for WDD by <a
rel="nofollow" href="http://www.webitect.net" target="_blank">Kayla Knight</a>.</em></p><p><em><strong>These are generalized tips, so be sure to share any additional tips for the practice of slicing a design and coding it, especially from a designer&#8217;s perspective.</strong></em></p><p><em><br
/> </em></p><p><br/><br
/><table
width="100%" style="border-top:1px solid #d7d7d7; border-bottom:1px solid #d7d7d7;" height="20"><tr><td
valign="center"> <a
href="http://www.mightydeals.com/deal/wpbusinessbundle.html?ref=inwidget"><font
face="Arial" size="3" color="#e64f32"><b>Never Ending WordPress Business Bundle &#8211; only $14!</b></font></a></td><td
width="90"> <a
href="http://www.mightydeals.com/?ref=inwidget"><br
/> <img
src="http://mightydeals.com/web/images/widget-logo.png" height="40" width="90" border="0"  /><br
/> </a></td></tr></table><p><br/></p> <a
href="http://www.webdesignerdepot.com/2009/11/coding-a-web-design-for-speed-and-quality/">Source</a><style type="text/css">
 p img {display:inline-block; margin-right:10px;}
.alignleft {float:left;}
p.showcase {clear:both;}
body#browserfriendly p, body#podcast p, div#emailbody p{margin:0;}
</style>]]></content:encoded> <wfw:commentRss>http://www.webdesignerdepot.com/2009/11/coding-a-web-design-for-speed-and-quality/feed/</wfw:commentRss> <slash:comments>93</slash:comments> </item> <item><title>Best Practices for 6 Common User Interface Elements</title><link>http://www.webdesignerdepot.com/2009/11/best-practices-for-6-common-user-interface-elements/</link> <comments>http://www.webdesignerdepot.com/2009/11/best-practices-for-6-common-user-interface-elements/#comments</comments> <pubDate>Thu, 05 Nov 2009 17:17:16 +0000</pubDate> <dc:creator>Walter</dc:creator> <category><![CDATA[Usability]]></category> <category><![CDATA[User Interface]]></category> <category><![CDATA[Web Design]]></category> <category><![CDATA[best practices]]></category> <category><![CDATA[interface]]></category> <category><![CDATA[ui]]></category><guid
isPermaLink="false">http://www.webdesignerdepot.com/?p=13229</guid> <description><![CDATA[The appearance and usability of certain interface elements and functionality are crucial to the success any websites in today&#8217;s market. Studies have demonstrated that even a split-second delay in thinking on the user&#8217;s part will weaken their perception and interest in a website and ultimately lower the website&#8217;s conversion rate. In certain niches and industries, [...]]]></description> <content:encoded><![CDATA[<p><a
href="http://www.webdesignerdepot.com/2009/11/best-practices-for-6-common-user-interface-elements/"><img
class="alignleft" src="http://netdna.webdesignerdepot.com/uploads/best_practices_common_user_interface_elements/thumb.jpg" alt="" width="200" height="160" /></a>The <strong>appearance and usability</strong> of certain interface elements and functionality are crucial to the success any websites in today&#8217;s market.</p><p>Studies have demonstrated that <strong>even a split-second delay in thinking on the user&#8217;s part will weaken their perception</strong> and interest in a website and ultimately lower the website&#8217;s conversion rate.</p><p>In certain niches and industries, having UI elements that are not obvious in their use may be perfectly acceptable. The blogging and web development industry are perfect examples.</p><p>But when we design user interfaces for non-tech-savvy audiences—which is usually the case with client work—we have to ensure that certain UI elements do not stray too far from what users are accustomed to.</p><p>This article discusses some <strong>best practices and usability traits of six user interface elements</strong> and the conventions for each, so that developers can create user experiences that are both beautiful and simple.<span
id="more-13229"></span></p><h1>1. Appearance of the Search Box</h1><p>On large information-rich or product-heavy websites, search is king. Users here generally forgo conventional navigation bars in favor of the search box.</p><p>A search box that is not immediately visible will have one of two effects: 1) the user will assume no search functionality is available, or 2) the user will find the search functionality after a delayed, and possibly irritating, period.</p><p>Ensure that the search box on your website is easy to see. <strong>Dark backgrounds and fancy graphics will impair usability</strong>, so keeping it white or light gray is best. Also, make sure the search box is large enough relative to other important elements on the page, thus maintaining its position in the visual hierarchy.</p><p>The search box on <a
href="http://www.domainbyip.com/">Domain by IP</a> fits the visual theme of the website nicely, being orange and graphically consistent with its surroundings. But if a search box on a busier website were given this treatment, it would probably be difficult to spot.</p><p><a
href="http://www.domainbyip.com/"><img
src="http://netdna.webdesignerdepot.com/uploads/best_practices_common_user_interface_elements/bad-search.jpg" alt="" width="615" height="218" /></a></p><p>The design is not a hindrance on Domain by IP because the website has one function: search, which is right in the middle of the page. Plus, being in a technology niche, its developers have less of an incentive to stick with convention. But <strong>this degree of creativity should be avoided on larger websites</strong>, whose target audiences may not be as technically savvy.</p><p><a
href="http://www.adventuretime.it/">Adventure Time</a>, meanwhile, keeps its search box white, conveniently sized and easy to find on the page:</p><p><a
href="http://www.adventuretime.it/"><img
src="http://netdna.webdesignerdepot.com/uploads/best_practices_common_user_interface_elements/good-search.jpg" alt="" width="615" height="400" /></a></p><p>Despite being in a foreign language, Adventure Time has a very clear search box, even for English-speaking users. The size and color of the box is complemented by the magnifying glass graphic, which has become the universal symbol for online search. A user looking for this functionality will not have a problem here.</p><p>This pattern should be followed in all projects targeted to a diverse user base.</p><h3>Further Reading:</h3><ul><li><a
href="http://www.smashingmagazine.com/2008/12/04/designing-the-holy-search-box-examples-and-best-practices/">Search Box: Examples and Best Practices</a></li></ul><p><br
class="spacer_" /></p><h1>2. Clearly Marked Collapsible/Expandable Content</h1><p>Websites benefit from collapsible panels and drop-down menus because they make for cleaner and less cluttered layouts. The hidden content in these interface elements can, however, impair a website&#8217;s usability if their presence is not clearly indicated.</p><p>When a user clicks on a bare link or button, they expect to be taken to a new page. But when a user clicks a link or button that has a hidden content indicator, they expect the new content to be instantly displayed (via JavaScript or AJAX) and have the option to hide it subsequently. Thus, a website should <strong>sharply differentiate between normal links and links that reveal new content via JavaScript</strong>.</p><p>Collapsible content, such as in side panels and menu trees, can be indicated with an arrow, triangle, or Windows Explorer-like plus/minus indicator. The panel that logged-in users see on <a
href="http://www.cssglobe.com/">CSS Globe</a> clearly indicates that it is collapsible:</p><p><a
href="http://www.cssglobe.com/"><img
src="http://netdna.webdesignerdepot.com/uploads/best_practices_common_user_interface_elements/panel-closed.jpg" alt="" width="615" height="450" /></a></p><p>Below is the same page after the panel has been expanded to reveal a group of functions:</p><p><a
href="http://www.cssglobe.com/"><img
src="http://netdna.webdesignerdepot.com/uploads/best_practices_common_user_interface_elements/panel-open.jpg" alt="" width="615" height="450" /></a></p><p>With the content in the panel now expanded, the arrow is rotated 90 degrees, suggesting that the same content can now be hidden or collapsed. This same principle can be applied to drop-down or fly-out menus, although these would not require a rotating arrow. Surprisingly, this feature is often omitted even on professionally designed websites.</p><h3>Further Reading:</h3><ul><li><a
href="http://www.welie.com/patterns/showPattern.php?patternID=collapsible-panels">Collapsible Panels: Interaction Design Patterns Library</a></li></ul><p><br
class="spacer_" /></p><h1>3. AJAX Loading Indicator</h1><p>When you improve the user experience by loading content through asynchronous requests, make sure to inform the user that an AJAX request is being processed. Without this indicator, the user may give up waiting or wonder why nothing has happened in response to their click.</p><p>You can accomplish this in a number of ways; one way is to highlight a &#8220;Loading&#8221; or similar message in or near the location where the action will occur, as Google&#8217;s RSS reader does:</p><p><a
href="http://www.google.com/reader"><img
src="http://netdna.webdesignerdepot.com/uploads/best_practices_common_user_interface_elements/loading-google.jpg" alt="" width="615" height="450" /></a></p><p>At the top of the screenshot is yellow highlighted text, which appears when the &#8220;Mark all as read&#8221; button is clicked, telling the user that something is happening.</p><p>Another way to indicate this is with animation or a revolving hour glass, which would be familiar to Windows users. An animated indicator is used on numerous websites, including <a
href="http://twitter.com/">Twitter</a>, where users click a &#8220;More&#8221; button to view older tweets:</p><p><a
href="http://twitter.com/DesignerDepot"><img
src="http://netdna.webdesignerdepot.com/uploads/best_practices_common_user_interface_elements/loading-twitter.jpg" alt="" width="615" height="450" /></a></p><p>Once the button is clicked, and depending on the speed of the client&#8217;s connection to the server, a familiar animated swirling graphic appears, telling the user that their request is being processed.</p><p>AJAX loading graphics are available for free from a number of different websites, many of which allow you to customize the graphics with size, color and other options.</p><p><a
href="http://www.ajaxload.info/"><img
src="http://netdna.webdesignerdepot.com/uploads/best_practices_common_user_interface_elements/ajaxload-site.jpg" alt="" width="615" height="434" /></a></p><p>This type of visual indicator is important for asynchronous requests that don&#8217;t provide client-side clues about what activity is loading.</p><p>An AJAX-like indicator could also be used to enhance non-AJAX functionality that behaves like AJAX and takes time to load. This could include a photo gallery that loads a larger image when a thumbnail is clicked.</p><p>AJAX loading graphics and other indicators don&#8217;t actually speed up a page, but they do improve the <strong>&#8220;perceived&#8221; load time</strong>, which is often just as valuable as improving the <em>actual</em> load time.</p><h3>Further Reading:</h3><ul><li><a
href="http://www.uie.com/articles/download_time/">The Truth About Download Time</a></li></ul><p><br
class="spacer_" /></p><h1>4. Location of Shopping Cart and Log-In and Register Functions</h1><p>When users scan a page for the &#8220;Shopping cart&#8221; button or &#8220;Register now&#8221; link, the first place they look is the top-right corner of the page. Unless you have a compelling reason to do so, keep this functionality in its familiar location, or else you risk slowing down and disrupting the user experience.</p><p>Options and functions that would fall under this category include &#8220;View cart,&#8221; &#8220;Check out,&#8221; &#8220;Log in,&#8221; &#8220;Log out,&#8221; &#8220;Register,&#8221; &#8220;Submit link,&#8221; &#8220;Forgot password?&#8221; and even &#8220;Contact us.&#8221; This last item would usually be the last one in a horizontal navigation bar.</p><p><a
href="http://www.tastebook.com/">TasteBook</a> includes four such links in the top-right corner of its layout:</p><p><a
href="http://www.tastebook.com/"><img
src="http://netdna.webdesignerdepot.com/uploads/best_practices_common_user_interface_elements/tastebook-cart.jpg" alt="" width="615" height="372" /></a></p><p><br
class="spacer_" /></p><p><a
href="http://www.mauidivers.com/">Maui Divers Jewelry</a> is another good example and also includes a shopping bag graphic:</p><p><a
href="http://www.mauidivers.com/"><img
src="http://netdna.webdesignerdepot.com/uploads/best_practices_common_user_interface_elements/maui-cart.jpg" alt="" width="615" height="320" /></a></p><p><br
class="spacer_" /></p><h1>5. Expiration Date Format on Credit Card Forms</h1><p>When a form asks for your credit card&#8217;s expiration date, the format is always the same: the month, represented by two digits, followed by the year, represented by two or four digits (e.g. 03/11 or 03/2011). The four-digit format is how the expiration date appears on the credit card itself.</p><p>The best way, then, to collect this information and strengthen the user experience is to use two separate select boxes, one for the month and the other for the year. Don&#8217;t make the user enter the expiration date in a single text box, even if you provide instructions.</p><p>Here is a good example from the <a
href="https://www.mauidivers.com/checkout/payment/">payment page</a> of Maui Divers Jewelry:</p><p><a
href="https://www.mauidivers.com/checkout/payment/"><img
src="http://netdna.webdesignerdepot.com/uploads/best_practices_common_user_interface_elements/maui-expiry.jpg" alt="" width="615" height="384" /></a></p><p>And here is an example of a poorly designed expiration date field:</p><p><a
href="https://secure.villacharities.com/checkout_new.asp"><img
src="http://netdna.webdesignerdepot.com/uploads/best_practices_common_user_interface_elements/vc-expiry.jpg" alt="" width="615" height="236" /></a></p><p>Moreover, the month selector should not display the names of the months, but instead should list the numbers 01 through 12. There is no reason to slow users down by making them figure out that &#8220;08&#8243; means &#8220;August.&#8221;</p><p><br
class="spacer_" /></p><h1>6. Easily Identifiable Links</h1><p>This should never be a problem, but unfortunately some websites still do not clearly distinguish between links and regular text in the main body.</p><p>In most cases, the best way to indicate this difference is by making links a different color and underlining them. In some cases, a strong contrasting color alone is enough; but only underlining or just changing the color slightly is rarely enough and will often impair accessibility.</p><p><a
href="http://cameron.io/">Cameron.io</a> makes this distinction well:</p><p><a
href="http://cameron.io/"><img
src="http://netdna.webdesignerdepot.com/uploads/best_practices_common_user_interface_elements/links-body.jpg" alt="" width="615" height="409" /></a></p><p>These links would not be as visible if they were merely underlined but not changed in color. You wouldn&#8217;t design a button that didn&#8217;t look like a button, so why let text links blend into the main body? As most users scan text online, designers should ensure that all links are identifiable long before a mouse is rolled over them.</p><h3>Further Reading:</h3><ul
class="tight_list"><li><a
href="http://webaim.org/blog/wcag-2-0-and-link-colors/">WCAG 2.0 and Link Colors</a></li><li><a
href="http://www.useit.com/alertbox/20040510.html">Guidelines for Visualizing Links</a></li></ul><p><br
class="spacer_" /></p><h1>Conclusion</h1><p>All of the user interface elements and functions discussed in this article are crucial to website usability and play important roles in the user&#8217;s perception of your brand.</p><p>Many small enhancements can make a big difference in perceived speed and can keep users from getting frustrated or uncomfortable.</p><p>Make your user interface elements simple and streamlined, and follow conventions where possible. You will see reduced bounce rates, better conversions and a steady flow of returning traffic.</p><p><br
class="spacer_" /></p><p><em>Written exclusively for WDD by Louis Lazaris, a freelance writer and web developer. Louis runs <a
href="http://www.impressivewebs.com/">Impressive Webs</a>, where he posts articles and tutorials on web design.</em></p><p><em><strong>How could some of these or other user interface elements be improved? Please share your thoughts in the comments below.</strong></em></p><p><em><strong><br
/> </strong></em></p><p><br/><br
/><table
width="100%" style="border-top:1px solid #d7d7d7; border-bottom:1px solid #d7d7d7;" height="20"><tr><td
valign="center"> <a
href="http://www.mightydeals.com/deal/wpbusinessbundle.html?ref=inwidget"><font
face="Arial" size="3" color="#e64f32"><b>Never Ending WordPress Business Bundle &#8211; only $14!</b></font></a></td><td
width="90"> <a
href="http://www.mightydeals.com/?ref=inwidget"><br
/> <img
src="http://mightydeals.com/web/images/widget-logo.png" height="40" width="90" border="0"  /><br
/> </a></td></tr></table><p><br/></p> <a
href="http://www.webdesignerdepot.com/2009/11/best-practices-for-6-common-user-interface-elements/">Source</a><style type="text/css">
 p img {display:inline-block; margin-right:10px;}
.alignleft {float:left;}
p.showcase {clear:both;}
body#browserfriendly p, body#podcast p, div#emailbody p{margin:0;}
</style>]]></content:encoded> <wfw:commentRss>http://www.webdesignerdepot.com/2009/11/best-practices-for-6-common-user-interface-elements/feed/</wfw:commentRss> <slash:comments>42</slash:comments> </item> <item><title>CNN&#8217;s New Website Design Deconstructed</title><link>http://www.webdesignerdepot.com/2009/11/cnns-new-website-design-deconstructed/</link> <comments>http://www.webdesignerdepot.com/2009/11/cnns-new-website-design-deconstructed/#comments</comments> <pubDate>Mon, 02 Nov 2009 17:27:29 +0000</pubDate> <dc:creator>Walter</dc:creator> <category><![CDATA[Usability]]></category> <category><![CDATA[User Interface]]></category> <category><![CDATA[Web Design]]></category> <category><![CDATA[cnn]]></category> <category><![CDATA[cnn new homepage]]></category> <category><![CDATA[website redesign]]></category><guid
isPermaLink="false">http://www.webdesignerdepot.com/?p=13288</guid> <description><![CDATA[On Monday, October 26, CNN.com introduced a new website design, making a number of major changes to their information-heavy layout. The new design is beautiful, clean, organized and well-structured. It invites the eye to scan and find something interesting with the goal of clicking through to another page. The previous design was somewhat cluttered and [...]]]></description> <content:encoded><![CDATA[<p><a
href="http://www.webdesignerdepot.com/2009/11/cnns-new-website-design-deconstructed/"><img
class="alignleft" src="http://netdna.webdesignerdepot.com/uploads/cnn/thumb.gif" alt="" width="200" height="160" /></a>On Monday, October 26, <a
rel="nofollow" href="http://cnn.com" target="_blank">CNN.com</a> introduced a <strong>new website design</strong>, making a number of major changes to their information-heavy layout.</p><p>The <strong>new design</strong> is beautiful, clean, organized and well-structured. It invites the eye to scan and find something interesting with the goal of clicking through to another page.</p><p>The previous design was somewhat cluttered and not very inviting; the content looked liked it was being forced into an unstructured space. The new layout is very different and <strong>embraces a number of modern web design and usability best practices and trends</strong>.</p><p>So, let&#8217;s look in more detail at not only the notable improvements, but some of the questionable design and usability decisions.</p><p><span
id="more-13288"></span></p><p><img
title="CNN.com new home page" src="http://netdna.webdesignerdepot.com/uploads/cnn/main-screen.jpg" alt="CNN.com new home page" width="615" height="500" /></p><p><br
class="spacer_" /></p><h1>Grid-Inspired Layout</h1><p>I&#8217;m using the phrase &#8220;grid-inspired&#8221; because the new design seems to be based on a grid, but the precision alignment of elements is not exactly there.</p><p>Taking a cursory look at their <a
href="http://i.cdn.turner.com/cnn/.element/css/3.0/common.css">primary stylesheet</a>, they appear to have loosely based their style and grid on the <a
href="http://www.blueprintcss.org/">Blueprint CSS</a> framework.</p><p>Their CSS reset bears many similarities to the Blueprint framework, and the word &#8220;blueprint&#8221; is included at the top, so this would be a logical assessment based on my own limited knowledge of Blueprint.</p><p>After analyzing a screen capture of their home page, I&#8217;ve concluded that if they based the new layout on a grid, the specifics of that grid would be: 16 columns, 50px per column, with 12px gutters (the space between columns), totaling 980px in width.</p><p>Below is a visual representation of my grid estimate, as a Photoshop mock up:</p><p><img
title="CNN.com home page grid" src="http://netdna.webdesignerdepot.com/uploads/cnn/grid-blue.jpg" alt="CNN.com home page grid" width="615" height="500" /></p><p>Even though the elements on the page do not follow the kind of alignment and balance that would customarily be expected of a grid layout, there is a noticeable improvement in this layout over the previous design, shown below:</p><p><img
title="CNN.com old design" src="http://netdna.webdesignerdepot.com/uploads/cnn/cnn-old.jpg" alt="CNN.com old design" width="615" height="416" /></p><p>The new layout keeps all page elements inside the 980px-wide container — unlike the clunky-looking previous design that had a fluid-width header that spanned the entire page above a fixed-width content section.</p><p>Also, while the old design couldn&#8217;t seem to decide between rounded corners and square, the new design consistently features square corners with subtle bevel effects separating appropriate elements, as shown in the image below.</p><p><img
title="CNN.com beveled edges" src="http://netdna.webdesignerdepot.com/uploads/cnn/bevel.jpg" alt="CNN.com beveled edges" width="615" height="79" /></p><p>Although the format is grid-like, it is, as mentioned, not a strict grid format, and the sections below the fold stray quite a bit in structure from those above.</p><p><br
class="spacer_" /></p><h1>Drastically Improved Header Section</h1><p>One of the most apparent improvements in the new design is the header section.</p><p>The horizontal navigation bar is <strong>modern, clean, and clear</strong>. The search box, signup option and login link are in the top-right corner, where they should be.</p><p>And, although it is not customary in modern design to center the site logo, in this case it works. It creates <strong>a very dominant, vivid, brand experience that is not easily forgotten</strong>.</p><p><img
title="CNN.com header" src="http://netdna.webdesignerdepot.com/uploads/cnn/header.jpg" alt="CNN.com header" width="615" height="78" /></p><p>Another nice feature of the navigation bar is that it indicates by means of color and graphics which links are primary, which are secondary, and which will open in micro-sites or sister sites. The latter are indicated by right-pointing triangles (&#8220;Money&#8221; and &#8220;Sports&#8221; — more on this below).</p><p><br
class="spacer_" /></p><h1>Effective Use of Space</h1><p>On the right-hand side of the page, below the primary ad unit, they&#8217;ve included an accordion-style content switcher, allowing the user to view previews, <strong>in a relatively small area</strong>, of content related to a number of different topics.</p><p><img
title="CNN.com accordion content switcher" src="http://netdna.webdesignerdepot.com/uploads/cnn/accordion.jpg" alt="CNN.com accordion content switcher" width="615" height="364" /></p><p><br
class="spacer_" /></p><h1>Emphasis on Video &amp; Story Popularity</h1><p>In the previous design, video had fairly strong emphasis, featured in a box on the right side. In the new design, <strong>video is a major category</strong> in the primary navigation bar, given virtually the same visual importance as the &#8220;Home&#8221; link.</p><p><img
title="CNN.com video link" src="http://netdna.webdesignerdepot.com/uploads/cnn/video-link.jpg" alt="CNN.com video link" width="615" height="119" /></p><p>Video stories are featured throughout the site, and are clearly indicated by the customary &#8220;play button&#8221; link on photos that link to video content, as shown below:</p><p><img
title="CNN.com video button" src="http://netdna.webdesignerdepot.com/uploads/cnn/video-play.jpg" alt="CNN.com video button" width="615" height="391" /></p><p>Another category given the same importance as &#8220;Home&#8221; and &#8220;Video&#8221;, as shown in the image above, is the &#8220;NewsPulse&#8221; section, which is new and still in beta.</p><p>This section displays news stories by popularity (which seems to be calculated by total page views, not comments), and allows the reader to filter the results by category or story type.</p><p><img
title="CNN.com NewsPulse" src="http://netdna.webdesignerdepot.com/uploads/cnn/newspulse.jpg" alt="CNN.com NewsPulse" width="615" height="500" /></p><p><br
class="spacer_" /></p><h1>Strong Category Pages</h1><p>The main category pages (&#8220;U.S.&#8221;, &#8220;World&#8221;, &#8220;Politics&#8221;, etc.), accessed from the primary navigation bar, <strong>work similarly to the home page</strong>.</p><p>In fact, if you didn&#8217;t know what page you were on, you might think you were on the home page. The &#8220;U.S.&#8221; category is shown below:</p><p><img
title="CNN.com category page" src="http://netdna.webdesignerdepot.com/uploads/cnn/category.jpg" alt="CNN.com category page" width="615" height="452" /></p><p>Each of these sections conveniently displays top stories, latest news, and other items related to that category.</p><p>The black and white captions below images, also featured on the home page and on article pages, are eye-catching and easy to read, <strong>without the use of overly-fancy graphics</strong> or font styles.</p><p><br
class="spacer_" /></p><h1>Strong Article Pages</h1><p>The article pages, for the most part, maintain the vivid branding of the home page. Body text is nicely displayed in 14px Arial with a <strong>very readable</strong> line-height.</p><p>Although some elements on the pages seem somewhat small, I personally like the way the font size of the article body stands out on the page, so the reader can stay focused on it.</p><p><img
title="CNN.com body copy" src="http://netdna.webdesignerdepot.com/uploads/cnn/body-copy.jpg" alt="CNN.com body copy" width="615" height="357" /></p><p>Also, on the left side of each story, there is a section called &#8220;Story Highlights&#8221; that summarizes the current story in a few bulleted-list points. This shows that CNN&#8217;s designers are aware of the online tendency of users to &#8220;scan&#8221; lengthy material.</p><p><br
class="spacer_" /></p><h1>Information Overload</h1><p>Of all the negative aspects of the new design, probably the first problem that is immediately evident is the overload of links and information on the home page — although it is more structured and organized, as discussed earlier.</p><p>The <strong>home page is about two and a half screens long</strong>, and includes sections that duplicate items in the main navigation bar, with about a half dozen sub-links under each category. These sections appear below the fold and are shown in this image:</p><p><img
title="CNN.com below the fold" src="http://netdna.webdesignerdepot.com/uploads/cnn/below-fold.jpg" alt="CNN.com below the fold" width="615" height="428" /></p><p>Since CNN is one of the most popular sites in the world (38 million unique visitors each month), these sections will receive considerable traffic in comparison to other sites, however, because they appear so far below the fold, and because there are so many links, the relative amount of traffic visiting those links through the home page would likely be quite low.</p><p><br
class="spacer_" /></p><h1>Important Sections Buried?</h1><p>As pointed out above, a lot of information on the home page appears well below the fold. And, significantly, it appears that some important content is completely buried at the bottom of the home page, <strong>more than two full screens below the header</strong>.</p><p>For example, a section entitled &#8220;Hot Topics&#8221; appears near the bottom, on the right side, just above some promos and ads.</p><p><img
title="CNN.com Hot Topics" src="http://netdna.webdesignerdepot.com/uploads/cnn/hot-topics.jpg" alt="CNN.com Hot Topics" width="615" height="275" /></p><p>It seems to make more sense that this section would replace the accordion content switcher, or else be incorporated into the accordion.</p><p>The ads and promos that appear below the &#8220;Hot Topics&#8221; also appear to be more important than their location reveals. Again, although such a high traffic website would receive many clicks on these areas, the click-through rate in comparison to the sections and ads above the fold would likely be drastically different.</p><p>Of course, CNN&#8217;s producers know what content is most important, and they understand their users&#8217; habits better than anyone else — but these layout and usability challenges are helpful to analyze should other developers face similar decisions.</p><p><br
class="spacer_" /></p><h1>Usability Mysteries</h1><p>There are a few elements on the new site that may not be designed for optimal usability.</p><p>One example is the <strong>right-pointing triangle</strong> that appears on each of the micro-site links. At first glance, I wasn&#8217;t sure what those triangles were for. They appear to indicate some sort of a JavaScript slider section that would pop up.</p><p>Some users not paying full attention may even mistaken them for downward-pointing arrows that produce drop-down menus.</p><p><img
title="CNN.com micro-site links" src="http://netdna.webdesignerdepot.com/uploads/cnn/triangles.jpg" alt="CNN.com micro-site links" width="615" height="119" /></p><p>Is there a better way to indicate a same-window micro-site link? I&#8217;m really not sure. Maybe something similar to the well-known Wikipedia icon <img
src="http://netdna.webdesignerdepot.com/uploads/cnn/external.png" alt="" /> would have sufficed — but then that would present the problem of users assuming that the links opened in a new window, which in this case is not true.</p><p>The accordion content switcher, discussed earlier, also has a few usability problems. First, <strong>when JavaScript is disabled, the accordion is rendered useless</strong> and doesn&#8217;t display any content.</p><p>It should expand by default to display all content, or else display one of the items. Also, the hyperlinked headers for the accordion sections should still link to their respective sections, but they don&#8217;t.</p><p>Another problem with the accordion content is that, since the text it contains is so small, it is not always clear what is clickable inside the accordion. This makes the <strong>links less distinct</strong> from the rest of the accordion content.</p><p>In the image below, the red arrow I&#8217;ve drawn is pointing to two bulleted list items. The text in those list items is hyperlinked, but this is not obvious at first glance.</p><p><img
title="CNN.com accordion links" src="http://netdna.webdesignerdepot.com/uploads/cnn/accordion-links.jpg" alt="CNN.com accordion links" width="615" height="345" /></p><p><br
class="spacer_" /></p><h1>Some Sections Still Reflect Old Design</h1><p>As will be the case with any redesign of a site the size of CNN&#8217;s, some sections will still reflect the old design until all pages are fully integrated.</p><p>This is usually the case with older content that won&#8217;t be visited as often, but in the case of CNN, some important sections still have the old skin.</p><p>Two examples are the <a
href="http://www.cnn.com/about/">about</a> and <a
href="http://www.cnn.com/feedback/">contact</a> pages.</p><p><br
class="spacer_" /></p><h1>Small Typography</h1><p>One particular design issue that <strong>does not conform to modern web design trends</strong> is the use of small text and small typographic elements.</p><p>The small size of the font in the accordion content was discussed earlier. There&#8217;s also the &#8220;share&#8221; toolbar that appears on article and video pages, the &#8220;Latest News&#8221; section on the home page, the &#8220;Sign up&#8221; and &#8220;Log in&#8221; links in the header, and the text links below the fold on the home page, to mention a few.</p><p><img
title="CNN.com share bar" src="http://netdna.webdesignerdepot.com/uploads/cnn/social.jpg" alt="CNN.com share bar" width="615" height="154" /></p><p>Would the &#8220;share&#8221; toolbar, shown above, be more effective with bigger typography? What about the &#8220;recommended&#8221; section, shown below, or other sections with smaller type?</p><p><img
title="CNN.com recommended" src="http://netdna.webdesignerdepot.com/uploads/cnn/recommend.jpg" alt="CNN.com recommended" width="615" height="173" /></p><p><br
class="spacer_" /></p><h1>Conclusion</h1><p>The new CNN.com site has added a number of features not discussed here that relate more to their news services and customized content. The first link below contains a video presented by CNN that discusses some of the new features.</p><p>I definitely think the new site presents a much more beautiful and interesting user experience than the old, and aside from the weaknesses in the accordion content switcher, the drawbacks to the new design are not really that significant.</p><p>It looks like a lot of time and planning went into the design of the new CNN.com, and I think web designers and <strong>those interested in improving usability</strong> on their own sites would do well to consider and try to learn from some of the changes presented on CNN&#8217;s new website.</p><p><br
class="spacer_" /></p><h1>Further Reading</h1><ul
class="tight_list"><li><a
href="http://www.cnn.com/interactive/relaunch/">Welcome to the New CNN.com (Video on CNN.com)</a></li><li><a
href="http://www.techcrunch.com/2009/10/22/the-new-cnn-com-first-screenshot/">The New CNN.com (First Screenshots on TechCrunch)</a></li><li><a
href="http://mashable.com/2009/10/24/cnn-new/">New CNN.com Goes Live: What Do You Think?</a></li></ul><p><br
class="spacer_" /></p><p><em>This post was written exclusively for Webdesigner Depot by Louis Lazaris, a freelance writer and web developer. Louis runs <a
href="http://www.impressivewebs.com/">Impressive Webs</a> where he posts articles and tutorials on web design. You can follow Louis <a
href="http://twitter.com/ImpressiveWebs">on Twitter</a> or get in touch with him <a
href="http://www.impressivewebs.com/contact">through his website</a>.</em></p><p><strong><em>What do you like or dislike about CNN&#8217;s new site design? Share your comments below.</em></strong></p><p><br
class="spacer_" /></p><p><br/><br
/><table
width="100%" style="border-top:1px solid #d7d7d7; border-bottom:1px solid #d7d7d7;" height="20"><tr><td
valign="center"> <a
href="http://www.mightydeals.com/deal/wpbusinessbundle.html?ref=inwidget"><font
face="Arial" size="3" color="#e64f32"><b>Never Ending WordPress Business Bundle &#8211; only $14!</b></font></a></td><td
width="90"> <a
href="http://www.mightydeals.com/?ref=inwidget"><br
/> <img
src="http://mightydeals.com/web/images/widget-logo.png" height="40" width="90" border="0"  /><br
/> </a></td></tr></table><p><br/></p> <a
href="http://www.webdesignerdepot.com/2009/11/cnns-new-website-design-deconstructed/">Source</a><style type="text/css">
 p img {display:inline-block; margin-right:10px;}
.alignleft {float:left;}
p.showcase {clear:both;}
body#browserfriendly p, body#podcast p, div#emailbody p{margin:0;}
</style>]]></content:encoded> <wfw:commentRss>http://www.webdesignerdepot.com/2009/11/cnns-new-website-design-deconstructed/feed/</wfw:commentRss> <slash:comments>106</slash:comments> </item> </channel> </rss>
<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk
Page Caching using disk (User agent is rejected)
Database Caching 12/72 queries in 0.032 seconds using disk
Object Caching 1493/1599 objects using disk

Served from: www.webdesignerdepot.com @ 2012-02-10 14:38:51 -->
