<?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>James Wanless &#187; design</title>
	<atom:link href="http://james.wanless.info/topic/design/feed/" rel="self" type="application/rss+xml" />
	<link>http://james.wanless.info</link>
	<description>designer :: collaborative technologist :: endorphin junkie</description>
	<lastBuildDate>Mon, 23 Aug 2010 18:42:11 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Customizing menus and widgets for my new WordPress theme</title>
		<link>http://james.wanless.info/2010/08/customizing-menus-and-widgets-for-my-new-wordpress-theme/</link>
		<comments>http://james.wanless.info/2010/08/customizing-menus-and-widgets-for-my-new-wordpress-theme/#comments</comments>
		<pubDate>Mon, 23 Aug 2010 05:33:12 +0000</pubDate>
		<dc:creator>James</dc:creator>
				<category><![CDATA[design]]></category>
		<category><![CDATA[technology]]></category>

		<guid isPermaLink="false">http://james.wanless.info/?p=2452</guid>
		<description><![CDATA[I have a history of somewhat routinely tweaking or fully redesigning my theme, but it&#8217;s usually just a matter of moving some elements around, changing a colour here and there and calling it a day. With the release of WordPress 3.0, I took a slightly different approach this time. This release brings with it some [...]

<ul><li><a href='http://james.wanless.info/2008/12/slight-re-design-launched/' rel='bookmark' title='Permanent Link: Slight re-design launched'>Slight re-design launched</a></li>
<li><a href='http://james.wanless.info/2009/03/a-facelift-i-can-probably-stay-with/' rel='bookmark' title='Permanent Link: A facelift I can probably stay with'>A facelift I can probably stay with</a></li>
</ull>]]></description>
			<content:encoded><![CDATA[<p>I have a history of somewhat routinely tweaking or fully redesigning my theme, but it&#8217;s usually just a matter of moving some elements around, changing a colour here and there and calling it a day.  With the release of WordPress 3.0, I took a slightly different approach this time.  This release brings with it some major changes and I decided to begin digging into WordPress a little more deeply than I usually do this time.</p>
<p>In particular, I decided it was high time I really began grokking widgets to a degree I hadn&#8217;t before and I was determined that the new WordPress menu system would be my friend.  This meant a different approach to the usual.  I&#8217;ve built a number of sites with WordPress where I presently work, and for clients in the past.  As we move more deeply into WordPress for blogs and other projects at BCIT, I felt that leveraging the platform&#8217;s features for my personal use would be useful.</p>
<h3>Simple menus &#8211; different mindset</h3>
<p>I&#8217;ve always written custom menu code in the past. For the most part, I did this because I could ensure that I maintained states for styling on families of pages and I could include exactly what I wanted to in various areas of page real estate.  However, I&#8217;ve always been bothered by this to some degree because, once I&#8217;ve finished designing a theme, I&#8217;m still opening up my code editor and FTP-ing something or other to the server as I make a tweak here and a tweak there, as opposed to simply updating my site through the admin panel.</p>
<p><span id="more-2452"></span>Taking a look at the two menus in the header area above, the upper-most menu contains the core static pages of the site.  Originally when styling this theme on my test server I was worried that I&#8217;d have a hard time preserving parent menu styling when on a child page of that page.  However, with the automatic generation of <em>current_page_parent</em> and <em>current_page_ancestor</em> classes, I can easily make my menus behave just the way I want and not write a single line of conditional PHP menu code.  The ability to build any number of custom menus and use them wherever you want, is a game-changer.</p>
<p>While I&#8217;ve usually implemented journal categories and archives in drop-down or bullet sidebar lists for all blog and archive pages, I decided I would reduce the number of categories significantly and implement them as the lower of the two header menus above.  I don&#8217;t use tags and this also helps ensure that I use a few key categories or topics for my writing, and that those categories are always on top for visitors to find.  I couldn&#8217;t find an easy way to implement a label for this menu, even looking closely at the parameters and arguments for the <em>wp_nav_menu</em> function.</p>
<div id="attachment_2474" class="wp-caption alignleft" style="width: 248px"><img class="size-full wp-image-2474" title="My hardcoded category menu label" src="http://james.wanless.info/wp-content/uploads/2010/08/Screen-shot-2010-08-22-at-10.20.03-PM.png" alt="menu label image" width="238" height="93" /><p class="wp-caption-text">My hardcoded category menu label</p></div>
<p>What I ended up doing was placing a margin on the menu code and wrapping it in another div, with which I hardcoded the label for the menu (pictured at left).  Imperfect I admit, but perhaps I&#8217;ll be able to figure out how to do it with only the menu code, as I know I can set the wrapper div for the menu, but just haven&#8217;t found a label argument so far.</p>
<p>For a simple explanation of how to implement 3.0 menus in your theme, check out <a title="Using Menus in WordPress 3.0" href="http://digwp.com/2010/08/using-menus-in-wordpress-3-0/">Digging Into WordPress&#8217;s explanation</a>.</p>
<h3>The trouble with widgets</h3>
<p>Even when widgets first came out, I resisted the urge to use them on my personal site because I like more contextual elements on my pages and have generally preferred to control things with PHP.  The difficult-to-style/control markup generated by functional widgets, coupled with the fact that widgets would be site-wide once implemented, turned me off using them.  I was also a little unclear about how to widget-ize various areas of my theme without screwing things up.</p>
<p>If you&#8217;re looking for a simple explanation of how to add widgets to your WordPress theme, <a title="How to widgetize your WordPress theme" href="http://digwp.com/2010/02/how-to-widgetize-wordpress-theme/">the guys at Digging Into WordPress have done it again</a>.  I found this article simple and to-the-point.  It allowed me to enable widgets in my existing theme through the functions.php file and then place the widget code in the various places in my theme where I want them to appear.  I addressed most of my issues around styling widget markup by trial and error.  Where the WordPress default or plugin widgets I tried didn&#8217;t produce the markup I wanted I often got around this by inserting WordPress functions directly in the widgets, just as if they were coded into my theme&#8217;s sidebar.php file.</p>
<p>You may be saying, &#8220;That&#8217;s all well and good, but you can&#8217;t run PHP code in your widgets.&#8221;  You&#8217;d be right, unless you first enabled the handy little <a title="ExecPHP WordPress plugin by Soren" href="http://bluesome.net/post/2005/08/18/50/">ExecPHP plugin</a>, which I&#8217;d recommend being careful with, as it allows you to execute PHP in posts, pages and widgets.</p>
<h3>Contexutalizing widgets</h3>
<p>While this fixed most of the issues I had with how widgets worked and styling their markup, the concept still posed a significant issue for me, as I couldn&#8217;t control where they appeared and where they didn&#8217;t appear.  It turns out that there are a few options that allow you more granular control of where widgets will appear on your site.  In my case, I wanted a fat footer with some Flickr photos and couple of my external feeds to appear only on my homepage, while I generally have a different sidebar for posts, archives, static pages, pages with children and my homepage, to name a few.</p>
<p>When I first started looking for ways to make widgets appear conditionally, I stumbled upon what I thought was the perfect solution in the <a title="Widget Context plugin" href="http://konstruktors.com/projects/wordpress-plugins/widget-context/">Widget Context plugin</a>.  When editing a widget, a large second panel appears below the widget content which allows you to include (or exclude) the widget in any or all of your theme&#8217;s templates via checkboxes, or to select pages on your site by URL (see below).</p>
<div id="attachment_2469" class="wp-caption alignnone" style="width: 573px"><img class="size-full wp-image-2469 " title="Widget context editing panel" src="http://james.wanless.info/wp-content/uploads/2010/08/Screen-shot-2010-08-22-at-10.00.29-PM.png" alt="Widget context editing panel image" width="563" height="221" /><p class="wp-caption-text">The Widget Context plugin editing panel</p></div>
<p>This implementation makes sense to me, as setting the options as you create or edit the widget works well and so does the plugin, provided you only use the checkboxes.  The real power in the plugin is the ability to use specific URLs for widgets on your site, if it worked.  I&#8217;m not sure if it&#8217;s due to the fact that this plugin has not been updated since before the release of WordPress 3.0, but implementing by URL doesn&#8217;t work, and having to live with templates as the deepest level of widget granularity doesn&#8217;t allow you to override widget appearance on a page-by-page basis if needed.</p>
<p>As I did a little more searching, I came across <a href="http://thecorkboard.org/wordpress-custom-widgets-plugin-updated/">Kyle&#8217;s post about Shiba&#8217;s Custom Widgets</a> plugin. That led me to make my way to <a title="Shiba's Custom Widgets plugin" href="http://shibashake.com/wordpress-theme/wordpress-custom-widgets-plugin">Shiba&#8217;s own site</a>, where I found a lot of good WordPress plugin work happening.</p>
<p>In large part, it does just what Widget Context does, but through a different type of implementation.  It adds new widget creation, management and options links and, frankly, having duplicate widget panels (and several instances of the same widget in them) is a little confusing until you get used to the concept.  What I really like about it, though, is that the granularity of widget control is perfect and, when you want to override the template settings you do so through the post, page or category editing panel.  In other words, using Shiba&#8217;s Custom Widgets, you can place widgets exactly where you want them on your site, provided you&#8217;ve enabled widgets in that part of your theme and factored the widget into your CSS.</p>
<h3>In closing and next steps</h3>
<p>I still have a few pages to whip up, but most of the work is done.  What I like is that I finally dug into a few things I wanted to and found that, with a little sleuthing, I was able to do pretty much exactly what I wanted despite my old-school attitude that I needed to hand-code all the custom stuff.  I can build the menus I want with the styling I want, and I can build the widgets I want, styled as I want and placed where I want.  I&#8217;m really looking forward to exploring more menu and widget customizations as we start using WordPress more and more at work.</p>


<ul><li><a href='http://james.wanless.info/2008/12/slight-re-design-launched/' rel='bookmark' title='Permanent Link: Slight re-design launched'>Slight re-design launched</a></li>
<li><a href='http://james.wanless.info/2009/03/a-facelift-i-can-probably-stay-with/' rel='bookmark' title='Permanent Link: A facelift I can probably stay with'>A facelift I can probably stay with</a></li>
</ull>]]></content:encoded>
			<wfw:commentRss>http://james.wanless.info/2010/08/customizing-menus-and-widgets-for-my-new-wordpress-theme/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>Anticipating intentions and meeting expectations</title>
		<link>http://james.wanless.info/2009/06/anticipating-intentions-and-meeting-expectations/</link>
		<comments>http://james.wanless.info/2009/06/anticipating-intentions-and-meeting-expectations/#comments</comments>
		<pubDate>Sat, 13 Jun 2009 19:58:53 +0000</pubDate>
		<dc:creator>James</dc:creator>
				<category><![CDATA[design]]></category>

		<guid isPermaLink="false">http://james.wanless.info/?p=1186</guid>
		<description><![CDATA[This week was a frustrating and interesting experience at work.  At the end of the week prior, I finally launched the new design of our program catalogue.  It's a little hard to explain or show what this means.  It's a new interface for a specific kind of site that will blend two sources of program data together once program staff update their content ...

<ul><li><a href='http://james.wanless.info/2008/09/testing-designs-on-non-functional-prototypes/' rel='bookmark' title='Permanent Link: Testing designs on non-functional prototypes'>Testing designs on non-functional prototypes</a></li>
</ull>]]></description>
			<content:encoded><![CDATA[<p>This week was a frustrating and interesting experience at work.  At the end of the week prior, I finally launched the new design of our program catalogue.  It&#8217;s a little hard to explain or show what this means.  It&#8217;s a new interface for a specific kind of site that will blend two sources of program data together once program staff update their content, which used to be displayed in different places on our site.  One particular design feature has caused significant amounts of both elation and consternation.  Would you have thought it would be the addition of a contact form?  Me neither, but I&#8217;m oversimplifying and that&#8217;s not really what this post is about.</p>
<p>What I&#8217;m really getting at here is a fundamental design truism.  Whether it&#8217;s learning, marketing or consumer products, a successful design is predicated on the quality of a user&#8217;s experience with it.  In my mind, the two absolute most important elements of that are the user&#8217;s intentions and expectations and how well you anticipate the first and meet the second.</p>
<h3>A little background</h3>
<p><img class="alignright size-full wp-image-1187" title="calls-to-action" src="http://james.wanless.info/wp-content/uploads/2009/06/picture-1.png" alt="calls-to-action" width="250" height="153" />A main requirement for this project was to ensure we drew attention to the key calls to action.  The image at right shows the actual size of the main calls to action on the <a href="http://www.bcit.ca/study/programs/6420acert">new program UI</a>.  They are the single largest text elements on the page and speak to the issue of anticipating user intentions.  </p>
<p>If we know or can surmise what it is our users want to do (particularly to meet our business goals), we should make those tasks easy for them.  If they&#8217;re considering applying to a post-secondary program, it should be simple to request more information, get in touch with us or to simply submit an application.  Making these obvious and placing them on good page real estate has increased contact requests roughly ten-fold and requests for more information by roughly six times</p>
<h3>Anticipating intentions</h3>
<p>Does this mean we made the best decision we could have?  It&#8217;s hard to know.  We can&#8217;t accurately track program applications through the web (don&#8217;t ask), so I don&#8217;t know if we&#8217;ve had a significant spike, but clearly there was a previously unmet need for our site visitors to communicate with us about programs.</p>
<p>However, we&#8217;re somewhat a victim of our own success.  At launch we had to send all contact inquiries to our program advising group, who&#8217;d never seen a tenth the volume they suddenly got.  Where possible since launch, I&#8217;ve been pointing those forms directly to program staff in the schools (who&#8217;d been the prime point of contact on half our 420 programs anyway) and am currently about halfway through, so the flood is beginning to disperse.  Of the feedback I&#8217;ve received from the schools, some are ecstatic with the increased interest and some are naturally worried about response standards.</p>
<p>The &#8216;request more info&#8217; link requires them to provide a certain amount of demographic data and we tell them up front that this will generate a follow-up contact and some snail mail.  With the &#8216;contact us&#8217; link, the requests which previously went through program advising, were met with a <a href="http://www.bcit.ca/askanadvisor/">form</a> which asked for a fair bit of information upfront.  Difficulty finding it and then having to answer a few questions probably disuaded a good number of users from filling it out.  The new form by contrast automatically picks up the program from which it came, and asks for a name, email address and comment.  Couple that with how prominent it is and I think we did a good job of anticipating needs with the redesign.</p>
<h3>Meeting expectations</h3>
<p>This is where we now need to move quickly on number of fronts.  If you decide you want to apply to a program, you&#8217;ll end up <a href="http://www.bcit.ca/admission/apply/">here</a>.  This is legacy content, which will then drive users into one of four longer pages, most of which ask them to go search for the program they want to apply to.  We need to provide them that information if they came from a program and clicked &#8216;apply now&#8217; and make it fast for them to get to our Banner application process.  As we can&#8217;t do much to improve that piece (and we are upgrading Banner fairly soon), the most important thing we can do is meet expectations for a useful thing to happen if our users decide to apply.</p>
<p>Similarly, with the contact form.  We may have to temporarily send users through the form with the multiple questions while we build a slightly better process for our contact forms, and I&#8217;m worried about doing so.  The end user isn&#8217;t worried about where their query went &#8211; they just want a timely answer that helps them make a decision.  Since, like all post-secondaries, we ultimately want course registrations and program applications, we want to do everything we can to answer their question.  The problem we need to solve is, with a severe increase in queries, due to simple design improvements, how do we ensure our internal process meets the expectations that result from anticipating intentions.</p>


<ul><li><a href='http://james.wanless.info/2008/09/testing-designs-on-non-functional-prototypes/' rel='bookmark' title='Permanent Link: Testing designs on non-functional prototypes'>Testing designs on non-functional prototypes</a></li>
</ull>]]></content:encoded>
			<wfw:commentRss>http://james.wanless.info/2009/06/anticipating-intentions-and-meeting-expectations/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Can you really design experience?</title>
		<link>http://james.wanless.info/2009/04/can-you-really-design-experience/</link>
		<comments>http://james.wanless.info/2009/04/can-you-really-design-experience/#comments</comments>
		<pubDate>Fri, 01 May 2009 06:48:14 +0000</pubDate>
		<dc:creator>James</dc:creator>
				<category><![CDATA[design]]></category>

		<guid isPermaLink="false">http://james.wanless.info/?p=1098</guid>
		<description><![CDATA[I don't think so.  I often think of the way we phrase things or the terms we use to refer to things.  While 'user experience design' is actually in my own work title, I don't think it applies to what I do ...

<ul><li><a href='http://james.wanless.info/2009/03/poor-experience-takes-away-from-nonprofits/' rel='bookmark' title='Permanent Link: Poor experience takes away from nonprofits'>Poor experience takes away from nonprofits</a></li>
<li><a href='http://james.wanless.info/2009/02/instructional-design-now-and-in-the-future-part-two/' rel='bookmark' title='Permanent Link: Instructional design now and in the future: part two'>Instructional design now and in the future: part two</a></li>
<li><a href='http://james.wanless.info/2009/02/instructional-design-now-and-in-the-future-part-one/' rel='bookmark' title='Permanent Link: Instructional design now and in the future: part one'>Instructional design now and in the future: part one</a></li>
</ull>]]></description>
			<content:encoded><![CDATA[<p>I don&#8217;t think so.  I often think of the way we phrase things or the terms we use to refer to things.  While &#8216;user experience design&#8217; is actually in my own work title, I don&#8217;t think it applies to what I do.  Oddly enough, I was reminded of this issue as I was congratulated for my recent completion of the <a href="/2009/04/2009-boston-marathon-race-report/">Boston Marathon</a>.  I really appreciate support for endurance events and I know that congratulations are nothing but well-intentioned.  The issue that comes to mind, which relates to so many things, is that you can&#8217;t really understand successful experience from the outside.</p>
<p>For example, my race time was my worst ever.  I won&#8217;t go into my long layoff from running, the past injury-laden year I&#8217;ve had, or that I&#8217;m presently nowhere near as fast as I used to be.  With regard to Boston, while I had a great time it simply wasn&#8217;t a good race <em>for me</em>.  When people congratulate you on an awesome race, you accept it as kind words, but in the back of your mind it actually draws attention to the fact you are unhappy with the results.  At least in my head, that&#8217;s the way things work.  A race time only has any meaning when viewed in the context of individual expectations and capabilities &#8211; or individual <em>experience</em>.</p>
<h3>Experience is individual</h3>
<p>What does this have to do with interactive design?  In my mind, it&#8217;s the X-factor.  I can follow all the <acronym title="User Centred Design">UCD</acronym> principles I want and I can probably do a pretty good job for most users of a web site or application.  However, experiences are very personal things and I don&#8217;t believe I can design those for anyone.  I can design quality interactions and build a solid site architecture as a framework for user experience, but that&#8217;s as far as it goes in my mind.  That is, of course, within the realm of business and politics that exist in large organizations, like the one where I work.</p>
<p>Just like I can&#8217;t tell if a given race time is good unless I ask the runner whether they were happy with it, I can&#8217;t tell if a user&#8217;s experience is good with something I design until after it&#8217;s done, and often not even then.  Prototyping and user testing will help me move toward the best design I can achieve, but it doesn&#8217;t measure the uniqueness of experience for the user.  The notion is also applicable to learning.  Particularly when referring to online learning, the quality of the interactions in the instructional design goes a very long way to determining the success of the endeavour, but the interactions are not the learning experience, itself.  Adult learning is generally seen to be situated, authentic, experiential and both social and individual.  Some aspects can be measured against prescribed outcomes, but there are way too many nuances to design a complete learning experience.  The best I believe you can do is provide the environment, activities, pacing, tools and support to frame the experience.  <span id="more-1098"></span></p>
<h3>Interactions and features frame experiences</h3>
<p>Now that I&#8217;ve segued nicely from running to web and online learning design, the similarities between the latter two become greater.  Social features abound on the web today.  I rarely come across any site that doesn&#8217;t have a blog component, RSS feeds, and/or discussion forums.  Many web applications now publish an open <acronym title="Application Programming Interface">API</acronym> so that users can build their own functionality on top of the platform and create something new.  However, the important thing to remember is that these are all features or interaction capabilities.  They are enabled, hopefully made easy to use, and feedback solicited about their use to continually improve them.  They are not, though, experience in and of themselves.  They are pieces of the framework of the user experience.  You do all these things well and your users have a better chance of having a good experience, but there are no guarantees.</p>
<p>Your typical <acronym title="Learning Management System">LMS</acronym> is also a user experience black hole.  The complaints one often hears about Blackboard or Desire2Learn are that they are closed systems, difficult to use and manage , have excessive licensing models and are a bit weak on social features.  Starting from this place makes a good user experience all the more challenging, but the elements I mentioned earlier, done right, will do a lot to mitigate the problems with the LMS platforms.  Again, though, regardless of how good or bad the software, instructional design, community-building efforts or support provided, no one can really design a learning experience.  Constructivism tells us that while learning is a social endeavour, it is also highly individualized to each learner.  I would have to be able to define the new knowledge that will be acquired to design the experience and that&#8217;s simply not possible.</p>
<h3>Only one opinion</h3>
<p>Web design and online learning are but two of many examples I could use, but they&#8217;re the two I have some understanding of and at some point they can up being closely related.  When framing interactive experiences, I believe I can only do so much to give the user the best chance of having a good experience.  Hey, but that&#8217;s only my experience and it may be individual to me.</p>


<ul><li><a href='http://james.wanless.info/2009/03/poor-experience-takes-away-from-nonprofits/' rel='bookmark' title='Permanent Link: Poor experience takes away from nonprofits'>Poor experience takes away from nonprofits</a></li>
<li><a href='http://james.wanless.info/2009/02/instructional-design-now-and-in-the-future-part-two/' rel='bookmark' title='Permanent Link: Instructional design now and in the future: part two'>Instructional design now and in the future: part two</a></li>
<li><a href='http://james.wanless.info/2009/02/instructional-design-now-and-in-the-future-part-one/' rel='bookmark' title='Permanent Link: Instructional design now and in the future: part one'>Instructional design now and in the future: part one</a></li>
</ull>]]></content:encoded>
			<wfw:commentRss>http://james.wanless.info/2009/04/can-you-really-design-experience/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Web trends interactive map</title>
		<link>http://james.wanless.info/2009/04/web-trends-interactive-map/</link>
		<comments>http://james.wanless.info/2009/04/web-trends-interactive-map/#comments</comments>
		<pubDate>Wed, 08 Apr 2009 19:57:57 +0000</pubDate>
		<dc:creator>James</dc:creator>
				<category><![CDATA[design]]></category>
		<category><![CDATA[technology]]></category>

		<guid isPermaLink="false">http://james.wanless.info/?p=1055</guid>
		<description><![CDATA[This came by way of a couple intermediaries, but it's cool nonetheless.  In the embed above, you can zoom in as deep as you want and pan and drag to see web domain trends and more.  A great way of visualizing the state of the web ...

<ul><li><a href='http://james.wanless.info/2009/03/is-it-cancer-or-walmart/' rel='bookmark' title='Permanent Link: Is it Cancer or Walmart?'>Is it Cancer or Walmart?</a></li>
<li><a href='http://james.wanless.info/2008/06/the-future-of-the-web/' rel='bookmark' title='Permanent Link: The future of the web?'>The future of the web?</a></li>
<li><a href='http://james.wanless.info/2008/08/web-as-research-tool/' rel='bookmark' title='Permanent Link: The web as a research tool'>The web as a research tool</a></li>
</ull>]]></description>
			<content:encoded><![CDATA[<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="550" height="300"><param name="movie" value="http://ak.zoomorama.com/static/onetime/zoombrowser@zoomorama.com/release/latest/browser.swf?indexURL=http://zml.zoomorama.com/1.0/legacyproxy/c72d023a682ce658a97aa8809928f2b5/2477f0e8b447bb6570493cdac464c41f/document.1.zml?indexURL=http://zml.zoomorama.com/1.0/legacyproxy/c72d023a682ce658a97aa8809928f2b5/2477f0e8b447bb6570493cdac464c41f/document.1.zml"/><param name="wmode" value="window" /><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><embed src="http://ak.zoomorama.com/static/onetime/zoombrowser@zoomorama.com/release/latest/browser.swf?indexURL=http://zml.zoomorama.com/1.0/legacyproxy/c72d023a682ce658a97aa8809928f2b5/2477f0e8b447bb6570493cdac464c41f/document.1.zml?indexURL=http://zml.zoomorama.com/1.0/legacyproxy/c72d023a682ce658a97aa8809928f2b5/2477f0e8b447bb6570493cdac464c41f/document.1.zml" wmode="window" allowfullscreen="true" allowscriptaccess="always" type="application/x-shockwave-flash" width="550" height="300"></embed></object></p>
<p>This came by way of a couple intermediaries, but it&#8217;s cool nonetheless.  In the embed above, you can zoom in as deep as you want and pan and drag to see web domain trends and more.  A great way of visualizing the state of the web.  The embed above is a little clunky, but if you click the arrows to start and then click within the animation, you should be able to zoom in and out (at least I can with my scroll wheel).</p>
<p>From <a href="http://flowingdata.com/2009/04/07/web-trends-map-from-information-architects-4th-edition/">Flowing Data</a>:</p>
<blockquote><p>Information Architects, a design firm with offices in Japan and Zurich, release their annual <a href="http://informationarchitects.jp/web-trend-map-4-final-beta/">web trends map</a>. This is the fourth one in the series. Popular domains on the Web are mapped to the Tokyo Metro and organized by how they are most related to the cities. Heights represent success in traffic and branding. Subway lines are colored by area of interest. For example, take the orange line to find the creatives. Notice that there are several colors passing through Apple.</p></blockquote>


<ul><li><a href='http://james.wanless.info/2009/03/is-it-cancer-or-walmart/' rel='bookmark' title='Permanent Link: Is it Cancer or Walmart?'>Is it Cancer or Walmart?</a></li>
<li><a href='http://james.wanless.info/2008/06/the-future-of-the-web/' rel='bookmark' title='Permanent Link: The future of the web?'>The future of the web?</a></li>
<li><a href='http://james.wanless.info/2008/08/web-as-research-tool/' rel='bookmark' title='Permanent Link: The web as a research tool'>The web as a research tool</a></li>
</ull>]]></content:encoded>
			<wfw:commentRss>http://james.wanless.info/2009/04/web-trends-interactive-map/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Is it Cancer or Walmart?</title>
		<link>http://james.wanless.info/2009/03/is-it-cancer-or-walmart/</link>
		<comments>http://james.wanless.info/2009/03/is-it-cancer-or-walmart/#comments</comments>
		<pubDate>Sat, 28 Mar 2009 02:17:49 +0000</pubDate>
		<dc:creator>James</dc:creator>
				<category><![CDATA[design]]></category>

		<guid isPermaLink="false">http://james.wanless.info/?p=1000</guid>
		<description><![CDATA[This is actually a still that I pulled from <a href="http://flowingdata.com/2008/07/10/watching-the-growth-of-walmart-across-america-interactive-edition/">here</a>, but you'll find it more interesting if you go to the <a href="http://projects.flowingdata.com/walmart/">Flash animation</a> ...

<ul><li><a href='http://james.wanless.info/2009/04/web-trends-interactive-map/' rel='bookmark' title='Permanent Link: Web trends interactive map'>Web trends interactive map</a></li>
<li><a href='http://james.wanless.info/2009/02/siftables-a-brilliant-interface/' rel='bookmark' title='Permanent Link: Siftables, a brilliant interface'>Siftables, a brilliant interface</a></li>
<li><a href='http://james.wanless.info/2009/03/low-fi-concept-demos/' rel='bookmark' title='Permanent Link: Low Fi Concept Demos'>Low Fi Concept Demos</a></li>
</ull>]]></description>
			<content:encoded><![CDATA[<p><img src="/wp-content/uploads/2009/03/walmart.jpg" alt="walmart" title="walmart" width="545" height="288" /></p>
<p>This is actually a still that I pulled from <a href="http://flowingdata.com/2008/07/10/watching-the-growth-of-walmart-across-america-interactive-edition/">here</a>, but you&#8217;ll find it more interesting if you go to the <a href="http://projects.flowingdata.com/walmart/">Flash animation</a> showing the spread of Walmart in the United States, starting from one location in 1961 and growing to 3176 in 2006.  Very cool.</p>
<p>You can click in as deeply as you want and click &#8216;n drag the map.  I wish it had an embed code, but didn&#8217;t want to go as far as trying to pull the SWF and place it here.</p>
<p>This animation is now nearly a year old, and nearly three years past the data currency, so who knows how many stores there are now &#8211; and this is only in the US.    It really reminded me of a disease or tumours in the way it grew and spread.  And, that&#8217;s kind an appropriate analogy in my mind.</p>


<ul><li><a href='http://james.wanless.info/2009/04/web-trends-interactive-map/' rel='bookmark' title='Permanent Link: Web trends interactive map'>Web trends interactive map</a></li>
<li><a href='http://james.wanless.info/2009/02/siftables-a-brilliant-interface/' rel='bookmark' title='Permanent Link: Siftables, a brilliant interface'>Siftables, a brilliant interface</a></li>
<li><a href='http://james.wanless.info/2009/03/low-fi-concept-demos/' rel='bookmark' title='Permanent Link: Low Fi Concept Demos'>Low Fi Concept Demos</a></li>
</ull>]]></content:encoded>
			<wfw:commentRss>http://james.wanless.info/2009/03/is-it-cancer-or-walmart/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A facelift I can probably stay with</title>
		<link>http://james.wanless.info/2009/03/a-facelift-i-can-probably-stay-with/</link>
		<comments>http://james.wanless.info/2009/03/a-facelift-i-can-probably-stay-with/#comments</comments>
		<pubDate>Fri, 20 Mar 2009 07:10:10 +0000</pubDate>
		<dc:creator>James</dc:creator>
				<category><![CDATA[design]]></category>

		<guid isPermaLink="false">http://james.wanless.info/?p=961</guid>
		<description><![CDATA[I've always been a little schizophrenic about the designs I slap on my web sites.  I really like mucking around with XHTML and CSS, but don't have time to play with it in my spare time anymore ...

<ul><li><a href='http://james.wanless.info/2010/08/customizing-menus-and-widgets-for-my-new-wordpress-theme/' rel='bookmark' title='Permanent Link: Customizing menus and widgets for my new WordPress theme'>Customizing menus and widgets for my new WordPress theme</a></li>
<li><a href='http://james.wanless.info/2008/12/slight-re-design-launched/' rel='bookmark' title='Permanent Link: Slight re-design launched'>Slight re-design launched</a></li>
<li><a href='http://james.wanless.info/2009/05/defining-thesis-questions/' rel='bookmark' title='Permanent Link: Defining thesis research questions'>Defining thesis research questions</a></li>
</ull>]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve always been a little schizophrenic about the designs I slap on my web sites.  I really like mucking around with XHTML and CSS, but don&#8217;t have time to play with it in my spare time anymore and my work now focuses almost entirely on project management, interaction design and information architecture.  So my own sites are really my only opportunity to have a little markup fun.  I think I can live with this one for a while, though.</p>
<p>I wanted to make sure I took a slightly different approach this time.  While it&#8217;s still a blog at it&#8217;s core, I wanted to make the static pages stand alone more, to hopefully accommodate a little more professional and academically related content as I move forward.  Maybe papers, presentations and other pieces of progress as I go wherever the MA I&#8217;m working on, takes me &#8211; but a journal on steroids.</p>
<p>My basic strategy was to make the landing page a digital aggregator of most of my online life, while I can easily add and separate more static content and focus the pages a little more.  I like trying to bend the WordPress structure a little with a few conditional statements and typography, for the most part.  The sparse layout is no accident, focusing on words and the odd image, while allowing it all to breathe.  A slight newspaper look was my overall inspiration.</p>
<h3>A word or two on WordPress</h3>
<p><a href="http://www.wordpress.org">WordPress</a> makes it very easy to play around with markup and style to your heart&#8217;s content.  With the various domains, blogs and personal sites I&#8217;ve had over the past few years, I&#8217;ve experimented with lots of things, including the root for the <a href="http://www.wanless.info">wanless.info</a> domain, which is there largely for posterity.  However, that&#8217;s not WordPress, just a hand-coded site that I put together entirely with PHP and flat text files.  I gotta remember to retire that at some point.</p>
<p><span id="more-961"></span>I&#8217;ve built my share of WordPress sites, like the one you&#8217;re on, <a href="http://www.heatingtech.ca">this</a>, or <a href="http://powersmartforum.com">this</a>.  At other times I&#8217;ve done more interaction and IA while someone else coded, like <a href="http://www.junxionstrategy.com">this</a> and <a href="http://www.da-architects.ca">this</a>.  Unfortunately, at BCIT we&#8217;re doing mostly Drupal for standalone projects like our <a href="http://www.bcit.ca/mylife/">student blogs</a>, <a href="http://www.bcit.ca/fiveforward/">Five Forward</a>, or <a href="http://whatwouldyouchange.ca">What Would You Change</a> &#8211; let&#8217;s just say I&#8217;m no big fan.</p>
<p>I&#8217;d love to be able to do some more WordPress work at BCIT, but I think I&#8217;ll just have to live without it.</p>


<ul><li><a href='http://james.wanless.info/2010/08/customizing-menus-and-widgets-for-my-new-wordpress-theme/' rel='bookmark' title='Permanent Link: Customizing menus and widgets for my new WordPress theme'>Customizing menus and widgets for my new WordPress theme</a></li>
<li><a href='http://james.wanless.info/2008/12/slight-re-design-launched/' rel='bookmark' title='Permanent Link: Slight re-design launched'>Slight re-design launched</a></li>
<li><a href='http://james.wanless.info/2009/05/defining-thesis-questions/' rel='bookmark' title='Permanent Link: Defining thesis research questions'>Defining thesis research questions</a></li>
</ull>]]></content:encoded>
			<wfw:commentRss>http://james.wanless.info/2009/03/a-facelift-i-can-probably-stay-with/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Don Norman from TED2003 on design</title>
		<link>http://james.wanless.info/2009/03/don-norman-from-ted2003-on-design/</link>
		<comments>http://james.wanless.info/2009/03/don-norman-from-ted2003-on-design/#comments</comments>
		<pubDate>Mon, 09 Mar 2009 23:23:26 +0000</pubDate>
		<dc:creator>James</dc:creator>
				<category><![CDATA[design]]></category>

		<guid isPermaLink="false">http://james.wanless.info/?p=922</guid>
		<description><![CDATA[What makes for good design?  Don Norman has an interesting take on what design is.  For him, design works (or at least it did in 2003) on three elements - visceral, behavioural and emotional ...


No related posts.]]></description>
			<content:encoded><![CDATA[<p>What makes for good design?  Don Norman has an interesting take on what design is.  For him, design works (or at least it did in 2003) on three levels &#8211; visceral, behavioural and emotional.  He argues that we perceive design on almost entirely a subconscious level, as with most things we do.  I know one thing.  If something I have to use is well-designed and designed for me, then using it should be second-nature, or close to subconscious.</p>
<p><object width="446" height="326"><param name="movie" value="http://video.ted.com/assets/player/swf/EmbedPlayer.swf"></param><param name="allowFullScreen" value="true" /><param name="wmode" value="transparent"></param><param name="bgColor" value="#ffffff"></param><param name="flashvars" value="vu=http://video.ted.com/talks/embed/DonNorman_2003-embed_high.flv&#038;su=http://images.ted.com/images/ted/tedindex/embed-posters/DonNorman-2003.embed_thumbnail.jpg&#038;vw=432&#038;vh=240&#038;ap=0&#038;ti=480" /><embed src="http://video.ted.com/assets/player/swf/EmbedPlayer.swf" pluginspace="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" wmode="transparent" bgColor="#ffffff" width="446" height="326" allowFullScreen="true" flashvars="vu=http://video.ted.com/talks/embed/DonNorman_2003-embed_high.flv&#038;su=http://images.ted.com/images/ted/tedindex/embed-posters/DonNorman-2003.embed_thumbnail.jpg&#038;vw=432&#038;vh=240&#038;ap=0&#038;ti=480"></embed></object></p>


<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://james.wanless.info/2009/03/don-norman-from-ted2003-on-design/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Low Fi Concept Demos</title>
		<link>http://james.wanless.info/2009/03/low-fi-concept-demos/</link>
		<comments>http://james.wanless.info/2009/03/low-fi-concept-demos/#comments</comments>
		<pubDate>Mon, 02 Mar 2009 20:19:07 +0000</pubDate>
		<dc:creator>James</dc:creator>
				<category><![CDATA[design]]></category>

		<guid isPermaLink="false">http://james.wanless.info/?p=912</guid>
		<description><![CDATA[Originally got this at Konigi.  Very effective.

<ul><li><a href='http://james.wanless.info/2009/03/5-weeks-to-boston-recovery-and-low-mileage/' rel='bookmark' title='Permanent Link: 5 weeks to Boston &#8211; recovery and low mileage'>5 weeks to Boston &#8211; recovery and low mileage</a></li>
</ull>]]></description>
			<content:encoded><![CDATA[<p>Originally got this at <a href="http://konigi.com/notebook/cooper-shows-how-do-low-fi-concept-demos">Konigi</a>.  Very effective.</p>
<p><object width="400" height="302" data="http://vimeo.com/moogaloop.swf?clip_id=3056252&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=&amp;fullscreen=1" type="application/x-shockwave-flash"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://vimeo.com/moogaloop.swf?clip_id=3056252&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=&amp;fullscreen=1" /></object></p>


<ul><li><a href='http://james.wanless.info/2009/03/5-weeks-to-boston-recovery-and-low-mileage/' rel='bookmark' title='Permanent Link: 5 weeks to Boston &#8211; recovery and low mileage'>5 weeks to Boston &#8211; recovery and low mileage</a></li>
</ull>]]></content:encoded>
			<wfw:commentRss>http://james.wanless.info/2009/03/low-fi-concept-demos/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ridiculous rollovers add nothing</title>
		<link>http://james.wanless.info/2009/02/ridiculous-rollovers-add-nothing/</link>
		<comments>http://james.wanless.info/2009/02/ridiculous-rollovers-add-nothing/#comments</comments>
		<pubDate>Tue, 17 Feb 2009 01:13:47 +0000</pubDate>
		<dc:creator>James</dc:creator>
				<category><![CDATA[design]]></category>

		<guid isPermaLink="false">http://james.wanless.info/?p=841</guid>
		<description><![CDATA[Sometimes a nifty CSS or Javascript trick to provide contextual information or a useful visual cue to your users adds a real touch.  The web is full of good examples.  Below are not three of them.  Sure, Web Designer Wall has some good tutorials, the requisite colourful background, drop shadows and is a nice looking visual piece of art.  It seems to suffer from a general lack of focus that often happens (at least for me) when everything is colourful.  However, that's not what I'm driving at here ...

<ul><li><a href='http://james.wanless.info/2008/12/slight-re-design-launched/' rel='bookmark' title='Permanent Link: Slight re-design launched'>Slight re-design launched</a></li>
<li><a href='http://james.wanless.info/2009/06/anticipating-intentions-and-meeting-expectations/' rel='bookmark' title='Permanent Link: Anticipating intentions and meeting expectations'>Anticipating intentions and meeting expectations</a></li>
</ull>]]></description>
			<content:encoded><![CDATA[<p>Sometimes a nifty CSS or Javascript trick to provide contextual information or a useful visual cue to your users adds a real touch.  The web is full of good examples.  Below are not three of them.  Sure, <a href="http://webdesignerwall.com">Web Designer Wall</a> has some good tutorials, the requisite colourful background, drop shadows and is a nice looking visual piece of art.  It seems to suffer from a general lack of focus that often happens (at least for me) when everything is colourful.  However, that&#8217;s not what I&#8217;m driving at here and I&#8217;m not picking on this site &#8211; it&#8217;s just the most recent and blatant example that caught my eye.</p>
<p>The main navigation tabs at the top take site visitors to three main pages, home, about, and a jobs board.  Do I really need a rollover effect to tell me that:</p>
<p>Clicking <strong>home</strong> will &#8216;go to home&#8217; &#8230;</p>
<p><img class="alignnone size-full wp-image-839" title="home-tab" src="http://james.wanless.info/wp-content/uploads/2009/02/home-tab.gif" alt="home-tab" width="335" height="90" /></p>
<p>Or clicking <strong>about</strong> will let me &#8216;check them out&#8217; &#8230;</p>
<p><img class="alignnone size-full wp-image-838" title="about-tab" src="http://james.wanless.info/wp-content/uploads/2009/02/about-tab.gif" alt="about-tab" width="335" height="90" /></p>
<p><span id="more-841"></span>Or, finally, that the <strong>jobs</strong> link will actually take me to a &#8216;job board&#8217; &#8230;</p>
<p><img class="alignnone size-full wp-image-840" title="jobs-tab" src="http://james.wanless.info/wp-content/uploads/2009/02/jobs-tab.gif" alt="jobs-tab" width="335" height="90" /></p>
<p>If you&#8217;re going to bother to code rollovers, whether through CSS pseudo elements or with JS (or both), then make them worthwhile, providing something of value to your users.  Contextual information to clarify something, definition of a term on hover, whatever &#8230;. just something more than a repetition of the link in <em>almost exactly the same wording</em>.</p>


<ul><li><a href='http://james.wanless.info/2008/12/slight-re-design-launched/' rel='bookmark' title='Permanent Link: Slight re-design launched'>Slight re-design launched</a></li>
<li><a href='http://james.wanless.info/2009/06/anticipating-intentions-and-meeting-expectations/' rel='bookmark' title='Permanent Link: Anticipating intentions and meeting expectations'>Anticipating intentions and meeting expectations</a></li>
</ull>]]></content:encoded>
			<wfw:commentRss>http://james.wanless.info/2009/02/ridiculous-rollovers-add-nothing/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Siftables, a brilliant interface</title>
		<link>http://james.wanless.info/2009/02/siftables-a-brilliant-interface/</link>
		<comments>http://james.wanless.info/2009/02/siftables-a-brilliant-interface/#comments</comments>
		<pubDate>Fri, 13 Feb 2009 22:50:34 +0000</pubDate>
		<dc:creator>James</dc:creator>
				<category><![CDATA[design]]></category>
		<category><![CDATA[technology]]></category>

		<guid isPermaLink="false">http://james.wanless.info/?p=832</guid>
		<description><![CDATA[I already bookmarked and tweeted this, brought to my attention by one of my RRU cohort.  However, as I thought about the educational implications for such a usable human-computer interface, the possibilities seem only limited by programming and concept ...

<ul><li><a href='http://james.wanless.info/2008/08/one-gigantic-learning-cycle-experiment/' rel='bookmark' title='Permanent Link: One gigantic learning cycle experiment'>One gigantic learning cycle experiment</a></li>
</ull>]]></description>
			<content:encoded><![CDATA[<p><object width="446" height="326" data="http://video.ted.com/assets/player/swf/EmbedPlayer.swf" type="application/x-shockwave-flash"><param name="allowFullScreen" value="true" /><param name="wmode" value="transparent" /><param name="bgColor" value="#ffffff" /><param name="flashvars" value="vu=http://video.ted.com/talks/embed/DavidMerrill_2009-embed_high.flv&amp;su=http://images.ted.com/images/ted/tedindex/embed-posters/DavidMerrill-2009.embed_thumbnail.jpg&amp;vw=432&amp;vh=240&amp;ap=0&amp;ti=457" /><param name="src" value="http://video.ted.com/assets/player/swf/EmbedPlayer.swf" /><param name="bgcolor" value="#ffffff" /><param name="allowfullscreen" value="true" /></object></p>
<p>I already bookmarked and tweeted this, brought to my attention by one of my RRU cohort.  However, as I thought about the educational implications for such a usable human-computer interface, the possibilities seem only limited by programming and concept.</p>
<p>David Merrill is my interaction and usability hero at the moment.</p>


<ul><li><a href='http://james.wanless.info/2008/08/one-gigantic-learning-cycle-experiment/' rel='bookmark' title='Permanent Link: One gigantic learning cycle experiment'>One gigantic learning cycle experiment</a></li>
</ull>]]></content:encoded>
			<wfw:commentRss>http://james.wanless.info/2009/02/siftables-a-brilliant-interface/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Slight re-design launched</title>
		<link>http://james.wanless.info/2008/12/slight-re-design-launched/</link>
		<comments>http://james.wanless.info/2008/12/slight-re-design-launched/#comments</comments>
		<pubDate>Thu, 11 Dec 2008 01:00:57 +0000</pubDate>
		<dc:creator>James</dc:creator>
				<category><![CDATA[design]]></category>

		<guid isPermaLink="false">http://james.wanless.info/?p=594</guid>
		<description><![CDATA[It's not a massive change by any means, but I made some template adjustments over the past couple weeks and published them today.  I don't do a lot of colourful Photoshop work, so that's not where I focus my efforts.  I've found the variety of ways I've approached my own site design in the past haven't really leverage my personal domain as a digital hub, so I'm hoping now I've done a bit better job of that ...

<ul><li><a href='http://james.wanless.info/2009/03/a-facelift-i-can-probably-stay-with/' rel='bookmark' title='Permanent Link: A facelift I can probably stay with'>A facelift I can probably stay with</a></li>
<li><a href='http://james.wanless.info/2010/08/customizing-menus-and-widgets-for-my-new-wordpress-theme/' rel='bookmark' title='Permanent Link: Customizing menus and widgets for my new WordPress theme'>Customizing menus and widgets for my new WordPress theme</a></li>
<li><a href='http://james.wanless.info/2009/02/ridiculous-rollovers-add-nothing/' rel='bookmark' title='Permanent Link: Ridiculous rollovers add nothing'>Ridiculous rollovers add nothing</a></li>
</ull>]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s not a massive change by any means, but I made some template adjustments over the past couple weeks and published them today.  I don&#8217;t do a lot of colourful Photoshop work, so that&#8217;s not where I focus my efforts.  I&#8217;ve found the variety of ways I&#8217;ve approached my own site design in the past haven&#8217;t really leverage my personal domain as a digital hub, so I&#8217;m hoping now I&#8217;ve done a bit better job of that.</p>
<h3>The main changes:</h3>
<ul>
<li>made the homepage more of a live aggregator of my digital life, with feed links for everything</li>
<li>arranged homepage content in order of importance, from left-to-right</li>
<li>moved the global navigation back up to the header and actually used WordPress to list my pages for a change, instead of custom ones</li>
<li>made the header colours a little bolder and more pronounced</li>
<li>made sub-page sidebars contextual to their focus</li>
<li>made it easier to add new site sections or sub-pages</li>
<li><strong>still</strong> haven&#8217;t given in to widgets and other WYSIWYG Ajax-ification</li>
</ul>


<ul><li><a href='http://james.wanless.info/2009/03/a-facelift-i-can-probably-stay-with/' rel='bookmark' title='Permanent Link: A facelift I can probably stay with'>A facelift I can probably stay with</a></li>
<li><a href='http://james.wanless.info/2010/08/customizing-menus-and-widgets-for-my-new-wordpress-theme/' rel='bookmark' title='Permanent Link: Customizing menus and widgets for my new WordPress theme'>Customizing menus and widgets for my new WordPress theme</a></li>
<li><a href='http://james.wanless.info/2009/02/ridiculous-rollovers-add-nothing/' rel='bookmark' title='Permanent Link: Ridiculous rollovers add nothing'>Ridiculous rollovers add nothing</a></li>
</ull>]]></content:encoded>
			<wfw:commentRss>http://james.wanless.info/2008/12/slight-re-design-launched/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Testing designs on non-functional prototypes</title>
		<link>http://james.wanless.info/2008/09/testing-designs-on-non-functional-prototypes/</link>
		<comments>http://james.wanless.info/2008/09/testing-designs-on-non-functional-prototypes/#comments</comments>
		<pubDate>Tue, 16 Sep 2008 21:53:39 +0000</pubDate>
		<dc:creator>James</dc:creator>
				<category><![CDATA[design]]></category>

		<guid isPermaLink="false">http://james.wanless.info/?p=440</guid>
		<description><![CDATA[I find myself grappling with the odd project management and user feedback issue as I trundle through the big project that takes up the bulk of my working day at present (and likely will through to next summer). In particular one issue has been eating at me for a while. I find it challenging to [...]

<ul><li><a href='http://james.wanless.info/2009/06/anticipating-intentions-and-meeting-expectations/' rel='bookmark' title='Permanent Link: Anticipating intentions and meeting expectations'>Anticipating intentions and meeting expectations</a></li>
<li><a href='http://james.wanless.info/2009/04/can-you-really-design-experience/' rel='bookmark' title='Permanent Link: Can you really design experience?'>Can you really design experience?</a></li>
<li><a href='http://james.wanless.info/2009/02/reflection-and-philosophy/' rel='bookmark' title='Permanent Link: Reflection and philosophy'>Reflection and philosophy</a></li>
</ull>]]></description>
			<content:encoded><![CDATA[<p>I find myself grappling with the odd project management and user feedback issue as I trundle through the big project that takes up the bulk of my working day at present (and likely will through to next summer).  In particular one issue has been eating at me for a while.  I find it challenging to do really useful user testing on click-through HTML prototypes when they&#8217;re not yet functional enough to just hand off to an end user for something like task completion analysis.  Any thoughts readers may have would be helpful.</p>
<h3>A little background</h3>
<p>The project I&#8217;m dealing with is a major redesign of the course and program catalogue on our public web site.  The phase I am presently working on is only focused on blending what have previously been completely separate data sources which publish separate program marketing &#8216;sitelets&#8217; with official institute program pages into one &#8216;micro-site&#8217; for each program we offer.  The part-time course catalogue and search functionality are later phases.</p>
<h3>The process to this point</h3>
<p>In getting to the point where we&#8217;ve got a visual design and web-based prototype, I followed a pretty standard development approach:</p>
<p><span id="more-440"></span></p>
<ul>
<li>examined existing usability analysis on our catalogue for key issues</li>
<li>conducted primary stakeholder research to uncover additional content management and presentation issues</li>
<li>developed a comprehensive design and functional requirements document</li>
<li>developed rudimentary IA and tested it with stakeholders via online AJAX card sort exercise</li>
<li>produced application storyboard/userflow and wireframes (with interaction notes) of all key presentation and content management interfaces</li>
<li>our team produced photoshop composites and HTML prototypes to demonstrate rudimentary end-user features</li>
<li>multiple presentations and demos have been conducted for broad, management and school-based stakeholder groups to solicit feedback, including current summer students</li>
<li>the feedback will be amalgamated in the next couple weeks into a design &#8216;lock-down&#8217; so that we can code the application</li>
</ul>
<h3>My problem</h3>
<p>While satisfying all stakeholders or blending data might seem like the obvious issue, it&#8217;s not.  While the coding process will create a fully functional beta application which we can use for user testing, I have desperately wanted to test the prototype, but found it difficult.  The best solution I could come up with was to present the demo to the group of students and then have them answer a short paper-based survey to solicit their opinion, particularly since so much of it is not functional that any user testing would have created more questions than answers.</p>
<p>The survey methodology is not nearly as valuable in my mind as observing them interacting with it, because my concern is that certain visual or interaction design issues which might be caught while someone is using it, won&#8217;t become apparent until we&#8217;re beta testing the application, after it&#8217;s too late for design changes.</p>
<p>I&#8217;d love to hear thoughts from anyone who&#8217;s had to conduct user tests on prototypes.</p>


<ul><li><a href='http://james.wanless.info/2009/06/anticipating-intentions-and-meeting-expectations/' rel='bookmark' title='Permanent Link: Anticipating intentions and meeting expectations'>Anticipating intentions and meeting expectations</a></li>
<li><a href='http://james.wanless.info/2009/04/can-you-really-design-experience/' rel='bookmark' title='Permanent Link: Can you really design experience?'>Can you really design experience?</a></li>
<li><a href='http://james.wanless.info/2009/02/reflection-and-philosophy/' rel='bookmark' title='Permanent Link: Reflection and philosophy'>Reflection and philosophy</a></li>
</ull>]]></content:encoded>
			<wfw:commentRss>http://james.wanless.info/2008/09/testing-designs-on-non-functional-prototypes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
