<?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>littled.net &#187; web design</title>
	<atom:link href="http://www.littled.net/new/category/web-design/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.littled.net/new</link>
	<description>David Little&#039;s home on the Web</description>
	<lastBuildDate>Mon, 15 Mar 2010 16:34:52 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>JQuery dialogs and embedded Flash movies</title>
		<link>http://www.littled.net/new/2009/12/09/jquery-dialogs-and-embedded-flash-movies/</link>
		<comments>http://www.littled.net/new/2009/12/09/jquery-dialogs-and-embedded-flash-movies/#comments</comments>
		<pubDate>Wed, 09 Dec 2009 17:08:12 +0000</pubDate>
		<dc:creator>David</dc:creator>
				<category><![CDATA[flash]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[web design]]></category>

		<guid isPermaLink="false">http://www.littled.net/new/2009/12/09/jquery-dialogs-and-embedded-flash-movies/</guid>
		<description><![CDATA[
Just hit a snag with a jQuery dialog overlay which was supposed to display over an embedded Flash file &#8212; whatever the z-index of the dialog, it always appeared behind the movie (and flickered insanely which was doubly annoying). Thankfully, it&#8217;s easy to fix this problem with the addition of an extra parameter in your [...]]]></description>
			<content:encoded><![CDATA[<p id="top" />
<p>Just hit a snag with a jQuery dialog overlay which was supposed to display over an embedded Flash file &#8212; whatever the z-index of the dialog, it always appeared <em>behind</em> the movie (and flickered insanely which was doubly annoying). Thankfully, it&#8217;s easy to fix this problem with the addition of an extra parameter in your embed code:</p>
<p />
<div>&lt;embed &#8230;&nbsp;wmode=&#8221;transparent&#8221; /&gt;</div>
<p />
<div><a href="http://stackoverflow.com/questions/326196/ff3-windows-css-z-index-problem-with-youtube-player">Thanks to Stackoverflow for the solution</a>.</div>
<p style="font-size: 10px;">  <a href="http://posterous.com">Posted via email</a>   from <a href="http://littled.posterous.com/jquery-dialogs-and-embedded-flash-movies">What&#8217;s this for?</a>  </p>
]]></content:encoded>
			<wfw:commentRss>http://www.littled.net/new/2009/12/09/jquery-dialogs-and-embedded-flash-movies/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to close a jQuery dialog box by clicking outside of it</title>
		<link>http://www.littled.net/new/2009/11/30/how-to-close-a-jquery-dialog-box-by-clicking-outside-of-it/</link>
		<comments>http://www.littled.net/new/2009/11/30/how-to-close-a-jquery-dialog-box-by-clicking-outside-of-it/#comments</comments>
		<pubDate>Mon, 30 Nov 2009 15:34:58 +0000</pubDate>
		<dc:creator>David</dc:creator>
				<category><![CDATA[UI]]></category>
		<category><![CDATA[blog-post]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[web design]]></category>
		<category><![CDATA[web development]]></category>

		<guid isPermaLink="false">http://www.littled.net/new/?p=392</guid>
		<description><![CDATA[JQuery gives you a very simple way to create dialog overlays with the dialog() event. So, by clicking an HTML element you can activate a &#8220;stay-on-the-page&#8221; overlay dialog box.
Traditionally one might use dialog boxes to ask the user a question to which she must respond (e.g. with an &#8220;Ok&#8221; or &#8220;Cancel&#8221;) but their use can [...]]]></description>
			<content:encoded><![CDATA[<p id="top" />JQuery gives you a very simple way to <a href="http://docs.jquery.com/UI/Dialog">create dialog overlays</a> with the dialog() event. So, by clicking an HTML element you can activate a &#8220;stay-on-the-page&#8221; overlay dialog box.</p>
<p>Traditionally one might use dialog boxes to ask the user a question to which she must respond (e.g. with an &#8220;Ok&#8221; or &#8220;Cancel&#8221;) but their use can extend beyond this. For instance I&#8217;ve used a dialog to show a <a href="http://www.useit.com/alertbox/mega-dropdown-menus.html">mega drop-down menu</a>; i.e. clicking a link opens a dialog box with a list of categorised links.</p>
<p>JQuery&#8217;s default behaviour for closing dialog boxes is not unreasonable: the user must click on the &#8220;Close&#8221; button (e.g. in the form of text or an &#8220;x&#8221;) or hit the escape key. However it&#8217;s possible you may want to provide more options for your users to close a box by simply clicking outside it.</p>
<p>I puzzled over this and didn&#8217;t get very far with Googling but came up with the following solution which seems to work.</p>
<p>When your dialog is created, a div with the class &#8220;ui-widget-overlay&#8221; is also created which &#8220;greys out&#8221; the background allowing the user to fully focus on the dialog. You can use this as a hook to add your dialog closing code, e.g.</p>
<p><code><br />
$(".ui-widget-overlay").live("click", function() {  $("#quick-links-modal").dialog("close"); } );<br />
</code></p>
<p>In this case my dialog has the ID &#8220;quick-links-modal&#8221;. NB you need to use the &#8220;live&#8221; event (rather than &#8220;click&#8221; etc.)  in order to bind the event to your dialog before the dialog has been initiated.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.littled.net/new/2009/11/30/how-to-close-a-jquery-dialog-box-by-clicking-outside-of-it/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Review of Plone 3 Theming by Veda Williams</title>
		<link>http://www.littled.net/new/2009/09/27/review-of-plone-3-theming-by-veda-williams/</link>
		<comments>http://www.littled.net/new/2009/09/27/review-of-plone-3-theming-by-veda-williams/#comments</comments>
		<pubDate>Sun, 27 Sep 2009 17:13:11 +0000</pubDate>
		<dc:creator>David</dc:creator>
				<category><![CDATA[blog-post]]></category>
		<category><![CDATA[books]]></category>
		<category><![CDATA[plone]]></category>
		<category><![CDATA[plone-themes]]></category>
		<category><![CDATA[plone3]]></category>
		<category><![CDATA[reviews]]></category>
		<category><![CDATA[web design]]></category>
		<category><![CDATA[web development]]></category>

		<guid isPermaLink="false">http://www.littled.net/new/?p=367</guid>
		<description><![CDATA[
Veda Williams&#8216; Plone 3 Theming (Packt, 2009) [Amazon UK &#124; Amazon US &#124; Packt] is a useful reference for anyone involved in customising the look and feel of their Plone-based website. Used alongside the various online resources on the plone.org website, particularly the Plone Theme Reference,  it should ease  most of the pain that Plone [...]]]></description>
			<content:encoded><![CDATA[<p id="top" /><a href="http://www.packtpub.com/plone-3-theming-create-flexible-powerful-professional-templates/mid/190809x2p4v1?utm_source=littled.net/new&amp;utm_medium=affiliate&amp;utm_content=blog&amp;utm_campaign=mdb_000310"><img class="alignright" style="border: 0px initial initial;" title="Plone 3 theming" src="http://www.littled.net/new/wp-content/uploads/2009/09/Plone-3-theming.jpg" alt="Plone 3 theming" width="203" height="250" /></a></p>
<p><a href="http://www.404-notfound.com">Veda Williams</a>&#8216; Plone 3 Theming (Packt, 2009) [<a href="http://www.amazon.co.uk/Plone-3-Theming-Veda-Williams/dp/1847193870/ref=sr_1_1?ie=UTF8&amp;s=books&amp;qid=1254067008&amp;sr=8-1">Amazon UK</a> | <a href="http://www.amazon.com/Plone-3-Theming-Veda-Williams/dp/1847193870/ref=sr_1_1?ie=UTF8&amp;s=books&amp;qid=1254067090&amp;sr=8-1">Amazon US</a> | <a href="http://www.packtpub.com/plone-3-theming-create-flexible-powerful-professional-templates/mid/190809x2p4v1?utm_source=littled.net%2Fnew&amp;utm_medium=affiliate&amp;utm_content=blog&amp;utm_campaign=mdb_000310">Packt</a>] is a useful reference for anyone involved in customising the look and feel of their Plone-based website. Used alongside the various online resources on the plone.org website, particularly the <a href="http://plone.org/documentation/manual/theme-reference">Plone Theme Reference</a>,  it should ease  most of the pain that Plone themers experience. Unfortunately (and this is not a criticism of the author), the book is let down by some poor copy-editing. It also contains a <a href="http://plone.org/documentation/faq/plone-3-theming-errata">number of errata</a>, which the author is gathering on the plone.org website.</p>
<p>The book is broken down into fifteen chapters, the most useful of which I found were chapters seven to twelve which deal with the day-to-day business of Plone theming.  These chapters cover customising viewlets and portlets, an overview of the Zope templating language ( ZPT), the creation and installation of a Plone theme, template changes, custom page views and theming tips. Although I&#8217;ve done a fair amount of Plone theming, I still find it quite esoteric and complex so it&#8217;s certainly very useful to have these chapters to refer back to.</p>
<p>Chapter fifteen, written by <a href="http://limi.net">Alex Limi</a>, gives an overview of the future of Plone theming using products such as <a href="http://pypi.python.org/pypi/collective.xdv">collective.xdv</a> and Deliverance. These seem an ultimately saner way to proceed and should allow non-Plone specialists to theme a site without getting too bogged down in Plone specifics. <a href="http://plone.org/documentation/manual/theming/referencemanual-all-pages">This article is also freely available on the Plone website</a> where it will be updated as the project develops.</p>
<p>I did wonder if the second chapter was really necessary &#8212; this provides an overview of the main graphic design, browser and text editing tools. I imagine that most web designers and developers already know about these and the complete beginner would be encouraged to to stay away from Plone until they are a little more experienced.</p>
<p>That aside, the only real complaint I have about the book is the quality of the copy-editing. I think the text would in places benefit from a little slimming down or rephrasing. I occasionally struggled with some of the explanations , although it must be borne in mind that Plone 3 theming is complex so is by its very nature difficult to explain in simple terms. Some other examples: it&#8217;s probably not necessary to have sentences like, &#8220;now what, you ask?&#8221; in a tutorial book and I&#8217;m not sure why there is a lengthy code sample from Plone 2 on pages 129-30 which is really only produced to show how things were done the &#8220;old way&#8221;.</p>
<p>Anyone who has been involved in Plone theming will know how hard Veda Williams has worked on it: in addition to this book, she coordinated the <a href="http://www.coactivate.org/projects/ootb-plone-themes/project-home">Out of the Box Plone Themes</a> project. For her work I&#8217;m sure she has the gratitude of every Plone themer. Hopefully subsequent editions of the book will address the editorial issues and errata.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.littled.net/new/2009/09/27/review-of-plone-3-theming-by-veda-williams/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Radio 4 website</title>
		<link>http://www.littled.net/new/2009/09/20/radio-4-website/</link>
		<comments>http://www.littled.net/new/2009/09/20/radio-4-website/#comments</comments>
		<pubDate>Sun, 20 Sep 2009 18:13:20 +0000</pubDate>
		<dc:creator>David</dc:creator>
				<category><![CDATA[interaction design]]></category>
		<category><![CDATA[web design]]></category>

		<guid isPermaLink="false">http://www.littled.net/new/2009/09/20/radio-4-website/</guid>
		<description><![CDATA[I was looking at the Radio 4 website the other day which I hadn&#8217;t done for a while and it looks like they&#8217;ve had a redesign at some point.
I really like the design &#8212; there&#8217;s a lot going on on the home page but it&#8217;s all clearly differentiated and the design elements are large and [...]]]></description>
			<content:encoded><![CDATA[<p id="top" />I was looking at the <a href="http://www.bbc.co.uk/radio4/" target="_blank">Radio 4 website</a> the other day which I hadn&#8217;t done for a while and it looks like they&#8217;ve had a redesign at some point.</p>
<p>I really like the design &#8212; there&#8217;s a lot going on on the home page but it&#8217;s all clearly differentiated and the design elements are large and bold. Your eye is immediately drawn to the features &#8220;spotlight&#8221; banner highlighting four main stories. The controls underneath the banner image have a clear affordance and relationship to the featured stories.</p>
<p>The &#8220;Find a programme&#8221; navigation to the right of the image provides a quick way in to finding a radio programme to find out more about it or to stream it &#8212; you can either browse by genre or programme title.</p>
<p>Below this is a carousel feature highlighting one programme per day over the last week. It&#8217;s easy to use with obvious previous/next controls. I like the use of images too &#8212; I never imagined Rabbi Lionel Blue looked like that!</p>
<p>The content keeps on coming below the carousel: popular shows / podcasts and links to leave feedback and get tickets.</p>
<p>One of the interesting things about the design is that its producers were clearly not worried about the &#8220;fold&#8221; &#8212; if you shrink your browser down to 1024 by 800 (or if this is your default screen size) you get cut off around about the programme description in the carousel. See the images below &#8212; the first is the full page design and the second the page &#8220;folded&#8221;. Despite the content run-on, most of the key calls to action are still shown and as a user, I certainly don&#8217;t object to a little scrolling over clicking a number of links to get to what I want.</p>
<p>Incidentally another thing I like about the design is the number of images: I really feel that these complement the radio shows and make the site more than just a listings device.</p>
<p>Nice site.</p>
<p><a href="http://posterous.com/getfile/files.posterous.com/littled/V5DAoNfRvoMUkXtJRN41CRKqXwxyxfdadgilhEpRxE9bqLiodHM3ejsX01ix/radio4-800.png"><img src="http://posterous.com/getfile/files.posterous.com/littled/t9qn1AoWjrLG3qEmf0oKMLmXW1uNjhFA36wocipnjkNAEUsgKnkCRYytZ6ip/radio4-800.png.scaled.500.jpg" alt="" width="500" height="798" /></a> <a href="http://posterous.com/getfile/files.posterous.com/littled/vWROzlAHyoS1cD30JFnRgEaqbrszxoU682wz251d5Vn1M37uwmXHfcYimpz0/radio4-fold800.png"><img src="http://posterous.com/getfile/files.posterous.com/littled/yt9xQtCc8hWpCkpNlszZ00L54SePaWO6zvgwgJSrd30pUBXlwEolyxUlBE3X/radio4-fold800.png.scaled.500.jpg" alt="" width="500" height="379" /></a> <a href="http://littled.posterous.com/radio-4-website">See and download the full gallery on posterous</a></p>
<p style="clear:both;font-size: 10px;"><a href="http://posterous.com">Posted via email</a> from <a href="http://littled.posterous.com/radio-4-website">What&#8217;s this for?</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.littled.net/new/2009/09/20/radio-4-website/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google&#8217;s new font size</title>
		<link>http://www.littled.net/new/2009/09/12/googles-new-font-size/</link>
		<comments>http://www.littled.net/new/2009/09/12/googles-new-font-size/#comments</comments>
		<pubDate>Sat, 12 Sep 2009 06:59:20 +0000</pubDate>
		<dc:creator>David</dc:creator>
				<category><![CDATA[UI]]></category>
		<category><![CDATA[web design]]></category>

		<guid isPermaLink="false">http://www.littled.net/new/2009/09/12/googles-new-font-size/</guid>
		<description><![CDATA[
So, Google have changed the font size on their home page for the search box and buttons. At first I thought this was some setting in Firefox going awry (I&#39;d been doing a fair amount of zooming on a design I was working on), but no. This is the way it&#39;s supposed to look.

Odd in [...]]]></description>
			<content:encoded><![CDATA[<p id="top" /><a href='http://posterous.com/getfile/files.posterous.com/littled/A5LiNbg2QlUms5GtAWVhZ1GHWszUB1dLd4wl8E2NaP442K7cLARnJckc6QmO/google-new.png'><img src="http://posterous.com/getfile/files.posterous.com/littled/9VGLzOMQvmlJ8Ff6XEY5QdJi1AcG0B7g9DddQjySZ3AsVNT5btxPmakvSMFY/google-new.png.scaled.500.jpg" width="500" height="198"/></a>
<p>So, <a href="http://googleblog.blogspot.com/2009/09/now-s-u-p-e-r-sized.html">Google have changed the font size on their home page for the search box and buttons</a>. At first I thought this was some setting in Firefox going awry (I&#39;d been doing a fair amount of zooming on a design I was working on), but no. This is the way it&#39;s supposed to look.</p>
<p />
<div>Odd in a way as it seems inconsistent with all of their other designs which use 10pt arial (even in Gmail which I&#39;m sending this post from) &#8212; but not unwelcome. Maybe it&#39;s because I&#39;m getting old but I do prefer larger, clearer type.</div>
<p />
<div>Knowing Google you can bet they spent a long time and a lot of money on the user research for this too (remember &quot;<a href="http://www.zeldman.com/2009/03/20/41-shades-of-blue/">41 shades of blue</a>-gate&quot;?).</div>
<p />
<div>Screenshot from Firefox on OS X.</div>
<p style="font-size: 10px;">  <a href="http://posterous.com">Posted via email</a>   from <a href="http://littled.posterous.com/googles-new-font-size">What&#8217;s this for?</a>  </p>
]]></content:encoded>
			<wfw:commentRss>http://www.littled.net/new/2009/09/12/googles-new-font-size/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Review of Designing Web Interfaces on DRB</title>
		<link>http://www.littled.net/new/2009/07/21/review-of-designing-web-interfaces-on-designers-review-of-book/</link>
		<comments>http://www.littled.net/new/2009/07/21/review-of-designing-web-interfaces-on-designers-review-of-book/#comments</comments>
		<pubDate>Tue, 21 Jul 2009 20:53:13 +0000</pubDate>
		<dc:creator>David</dc:creator>
				<category><![CDATA[UI]]></category>
		<category><![CDATA[User experience]]></category>
		<category><![CDATA[blog-post]]></category>
		<category><![CDATA[books]]></category>
		<category><![CDATA[interaction design]]></category>
		<category><![CDATA[reviews]]></category>
		<category><![CDATA[usability]]></category>
		<category><![CDATA[web design]]></category>
		<category><![CDATA[web development]]></category>
		<category><![CDATA[writing]]></category>

		<guid isPermaLink="false">http://www.littled.net/new/2009/07/21/review-of-designing-web-interfaces-on-designers-review-of-book/</guid>
		<description><![CDATA[My review of Designing Web Interfaces by Bill Scott and Theresa Neil (O&#8217;Reilly, 2009) is now up on the Designers&#8217; Review of Books website.
Posted via email from What&#8217;s this for?
]]></description>
			<content:encoded><![CDATA[<p id="top" /><a href="http://www.designersreviewofbooks.com/2009/07/designing-web-interfaces/">My review of Designing Web Interfaces</a> by Bill Scott and Theresa Neil (O&#8217;Reilly, 2009) is now up on the Designers&#8217; Review of Books website.</p>
<p style="font-size: 10px;"><a href="http://posterous.com">Posted via email</a> from <a href="http://littled.posterous.com/review-of-designing-web-interfaces-on-designe">What&#8217;s this for?</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.littled.net/new/2009/07/21/review-of-designing-web-interfaces-on-designers-review-of-book/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Not on good form</title>
		<link>http://www.littled.net/new/2009/07/21/not-on-good-form/</link>
		<comments>http://www.littled.net/new/2009/07/21/not-on-good-form/#comments</comments>
		<pubDate>Tue, 21 Jul 2009 20:26:30 +0000</pubDate>
		<dc:creator>David</dc:creator>
				<category><![CDATA[UI]]></category>
		<category><![CDATA[blog-post]]></category>
		<category><![CDATA[forms]]></category>
		<category><![CDATA[non-plone]]></category>
		<category><![CDATA[usability]]></category>
		<category><![CDATA[web design]]></category>

		<guid isPermaLink="false">http://www.littled.net/new/2009/07/21/not-on-good-form/</guid>
		<description><![CDATA[
I ordered a cycling map from Transport for London today. I think the &#8220;personal details&#8221; section of their form could do  with a little work. All the fields are mandatory, including  title (Mr, Ms etc.) and phone number. If you don&#8217;t fill these in then  you get an error message, although you&#8217;re [...]]]></description>
			<content:encoded><![CDATA[<p id="top" /><img src="http://posterous.com/getfile/files.posterous.com/littled/HOp9l2gci1jbGKGIhKJjHzBB1PyT7uSN3ipQ3dTJTKRfoyQBmHPQD9l7yERL/badform-1.jpg" alt="" width="434" height="391" /></p>
<p>I ordered a cycling map from <a href="http://www.tfl.gov.uk" target="_blank">Transport for London</a> today. I think the &#8220;personal details&#8221; section of their form could do  with a little work. All the fields are mandatory, including  title (Mr, Ms etc.) and phone number. If you don&#8217;t fill these in then  you get an error message, although you&#8217;re not dropped back to the  relevant section in the form to correct your &#8220;mistake&#8221;.</p>
<p>I&#8217;m  struggling to work out why your phone number and title could be in any  way relevant for the delivery of a free cycle map by post.</p>
<p style="font-size: 10px;"><a href="http://posterous.com">Posted via email</a> from <a href="http://littled.posterous.com/not-on-good-form">What&#8217;s this for?</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.littled.net/new/2009/07/21/not-on-good-form/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Don&#8217;t make me wait!</title>
		<link>http://www.littled.net/new/2009/07/04/dont-make-me-wait/</link>
		<comments>http://www.littled.net/new/2009/07/04/dont-make-me-wait/#comments</comments>
		<pubDate>Sat, 04 Jul 2009 12:16:23 +0000</pubDate>
		<dc:creator>David</dc:creator>
				<category><![CDATA[UI]]></category>
		<category><![CDATA[User experience]]></category>
		<category><![CDATA[blog-post]]></category>
		<category><![CDATA[interaction design]]></category>
		<category><![CDATA[non-plone]]></category>
		<category><![CDATA[usability]]></category>
		<category><![CDATA[web design]]></category>

		<guid isPermaLink="false">http://www.littled.net/new/?p=238</guid>
		<description><![CDATA[I wanted to check out details of the Futurism and Richard Long exhibitions on the Tate website yesterday. On the Tate&#8217;s home page there is a rotating clickable &#8220;splash&#8221; image providing details of various exhibitions and events. Much to my annoyance the details of the Richard Long exhibition were quickly replaced by other information. There [...]]]></description>
			<content:encoded><![CDATA[<p id="top" />I wanted to check out details of the <a href="http://tate.org.uk/modern/exhibitions/futurism/default.shtm">Futurism</a> and <a href="http://tate.org.uk/britain/exhibitions/richardlong/default.shtm">Richard Long</a> exhibitions on the <a href="http://www.tate.org.uk/">Tate</a> website yesterday. On the Tate&#8217;s home page there is a rotating clickable &#8220;splash&#8221; image providing details of various exhibitions and events. Much to my annoyance the details of the Richard Long exhibition were quickly replaced by other information. There was no way to navigate back to it so I had to start exploring the site to find what I wanted. To be fair there is an &#8220;exhibitions&#8221; link as well as a navigable events calendar, but to locate what you want you need to do a fair amount of scrolling and there&#8217;s no obvious way of sorting events.</p>
<p><img class="alignnone" src="http://www.littled.net/images/tate.jpg" alt="Tate home page" /></p>
<p>I would have preferred to have had some way of navigating through the information on the splash image &#8212; for instance, some carousel-style controls or something along the lines of the BBC home page:</p>
<p><img class="alignnone" src="http://www.littled.net/images/bbc-home.jpg" alt="" /></p>
<p>On the BBC home page, there are clear controls to change the splash image &#8212; they even tell you what you&#8217;ll expect to see.</p>
<p>The problem with the Tate approach is that each image displays for about five seconds. I counted six images, so that&#8217;s thirty seconds you need to wait if you want to take another look at something that caught your eye. One sure way to frustrate your users.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.littled.net/new/2009/07/04/dont-make-me-wait/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Standard online map controls?</title>
		<link>http://www.littled.net/new/2009/05/23/standard-online-map-controls/</link>
		<comments>http://www.littled.net/new/2009/05/23/standard-online-map-controls/#comments</comments>
		<pubDate>Sat, 23 May 2009 11:36:24 +0000</pubDate>
		<dc:creator>David</dc:creator>
				<category><![CDATA[UI]]></category>
		<category><![CDATA[blog-post]]></category>
		<category><![CDATA[interaction design]]></category>
		<category><![CDATA[non-plone]]></category>
		<category><![CDATA[web design]]></category>

		<guid isPermaLink="false">http://www.littled.net/new/?p=217</guid>
		<description><![CDATA[I noticed something interesting (well, interesting to me) about online map user interface controls the other day. I was planning a walking trip on the South Downs Way and found a website that had a handy draggable map. Nothing too out of the ordinary there so far.
But, this one quickly had me tearing my hair [...]]]></description>
			<content:encoded><![CDATA[<p id="top" />I noticed something interesting (well, interesting to me) about online map user interface controls the other day. I was planning a walking trip on the <a href="http://www.nationaltrail.co.uk/Southdowns/sites.asp?PageId=26">South Downs Way</a> and found a website that had a handy draggable map. Nothing too out of the ordinary there so far.</p>
<p>But, this one quickly had me tearing my hair out due to its completely counter-intuitive controls: if you click and drag to the left, the map moves to the right, drag it down and it moves up. I double-checked with Google Maps just to make sure I hadn&#8217;t totally lost it, and yes, sure enough, this is a reversal of standard controls, as much as they exist. Take a look at these videos and compare and contrast:</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="500" height="374" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="quality" value="high" /><param name="src" value="http://www.littled.net/images/flash/sd.swf" /><embed type="application/x-shockwave-flash" width="500" height="374" src="http://www.littled.net/images/flash/sd.swf" quality="high"></embed></object></p>
<p>1. South Downs Way interactive map behaviour (I&#8217;m not sure who produced this software)</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="500" height="374" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="quality" value="high" /><param name="src" value="http://www.littled.net/images/flash/gmap.swf" /><embed type="application/x-shockwave-flash" width="500" height="374" src="http://www.littled.net/images/flash/gmap.swf" quality="high"></embed></object></p>
<p>2. Google Maps behaviour</p>
<p>But, the first one isn&#8217;t <em>actually</em> as daft as you might first think, it just uses a different metaphor. Google Maps (and Yahoo, and just about every other online map tool I&#8217;ve used) use something like a concept of a standard map on a table top that you stick your hand on and drag: drag it down, and it moves down. On Google Maps, the pointer turns to the image of a hand when you click which emphasises this metaphor. The South Downs map however, puts the mouse in the role of the walker. Hence if you go forward, the landscape moves behind you; go left and it moves right (kind of).</p>
<p>Clever as this is, I can&#8217;t see it catching on. Not only does it break with the convention of other online maps, it also contravenes the standard direct manipulation controls of just about every other software package I can think of.</p>
<p>Incidentally, I looked at Yahoo Maps for comparison, and to be different they reverse the zoom in / zoom out control compared to Google Maps. Just to be different I guess, but this is still very annoying and for me, counter-intuitive. In fact I find Yahoo Maps in general a little clunky &#8212; I&#8217;m sticking with Google for this one I think.</p>
<p><img src="http://www.littled.net/images/yahoo.jpg" alt="Yahoo Maps" width="491" height="250" /></p>
<p>Yahoo maps: reverses the position of zoom-in / zoom-out. The scale indicators (&#8221;Country&#8221;, &#8220;Region&#8221;, &#8220;City&#8221;, &#8220;Street&#8221;), although in principle useful, just got in my way.</p>
<p>Maybe one day, we&#8217;ll get standard map controls?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.littled.net/new/2009/05/23/standard-online-map-controls/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What I write about on my blog apparently</title>
		<link>http://www.littled.net/new/2009/05/11/what-i-write-about-on-my-blog-apparently/</link>
		<comments>http://www.littled.net/new/2009/05/11/what-i-write-about-on-my-blog-apparently/#comments</comments>
		<pubDate>Mon, 11 May 2009 16:08:43 +0000</pubDate>
		<dc:creator>David</dc:creator>
				<category><![CDATA[blog]]></category>
		<category><![CDATA[blog-post]]></category>
		<category><![CDATA[offline]]></category>
		<category><![CDATA[web design]]></category>
		<category><![CDATA[web development]]></category>
		<category><![CDATA[writing]]></category>

		<guid isPermaLink="false">http://www.littled.net/new/2009/05/11/what-i-write-about-on-my-blog-apparently/</guid>
		<description><![CDATA[
 
What I write about on my blog apparently, originally uploaded by reynard.

I generated this from Wordle.net &#8212; a tag cloud of what I write about on my blog apparently. As you can see, my vocabulary is impressive and varied, with words such as &#8220;things&#8221; and &#8220;good&#8221; appearing prominently.
Look out though, because &#8220;possibly, Norman&#8217;s took mobile&#8221;.
]]></description>
			<content:encoded><![CDATA[<p id="top" />
<div style="text-align: left; padding: 3px;"><a title="photo sharing" href="http://www.flickr.com/photos/littled/3522674086/"><img style="border: solid 2px #000000;" src="http://farm4.static.flickr.com/3615/3522674086_56bab11ca2.jpg" alt="" /></a> </p>
<p><span style="font-size: 0.8em; margin-top: 0px;"><a href="http://www.flickr.com/photos/littled/3522674086/">What I write about on my blog apparently</a>, originally uploaded by <a href="http://www.flickr.com/people/littled/">reynard</a>.</span></p>
</div>
<p>I generated this from Wordle.net &#8212; a tag cloud of what I write about on my blog apparently. As you can see, my vocabulary is impressive and varied, with words such as &#8220;things&#8221; and &#8220;good&#8221; appearing prominently.</p>
<p>Look out though, because &#8220;possibly, Norman&#8217;s took mobile&#8221;.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.littled.net/new/2009/05/11/what-i-write-about-on-my-blog-apparently/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
