<?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>Max Design &#187; News</title>
	<atom:link href="http://www.maxdesign.com.au/category/news/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.maxdesign.com.au</link>
	<description></description>
	<lastBuildDate>Thu, 02 Feb 2012 01:08:47 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.5</generator>
		<item>
		<title>Skip links and standards?</title>
		<link>http://www.maxdesign.com.au/2012/02/02/skip-links/</link>
		<comments>http://www.maxdesign.com.au/2012/02/02/skip-links/#comments</comments>
		<pubDate>Wed, 01 Feb 2012 23:35:30 +0000</pubDate>
		<dc:creator>Russ</dc:creator>
				<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://www.maxdesign.com.au/?p=2602</guid>
		<description><![CDATA[Question: Are there any standards associated with skip links? Answer: Yes! In order to comply with Success Criterion 2.4.1 Bypass Blocks &#8211; you must provide a mechanism to &#8220;bypass blocks of content that are repeated on multiple Web pages. (Level A)&#8221; One of the &#8220;sufficient techniques&#8221; recommended by the W3C for bypassing blocks is the [...]]]></description>
			<content:encoded><![CDATA[<p>
	<strong>Question</strong>: Are there any standards associated with skip links?
</p>
<p>
	<strong>Answer</strong>: Yes! In order to comply with Success Criterion 2.4.1 Bypass Blocks &#8211; you must provide a mechanism to &#8220;bypass blocks of content that are repeated on multiple Web pages. (Level A)&#8221;
</p>
<p>
One of the &#8220;sufficient techniques&#8221; recommended by the W3C for bypassing blocks is the use of skip links. You can read more about them here:
</p>
<blockquote>
<p>
		&#8220;The objective of this technique is to provide a mechanism to bypass blocks of material that are repeated on multiple Web pages by skipping directly to the main content of the Web page. The first interactive item in the Web page is a link to the beginning of the main content. Activating the link sets focus beyond the other content to the main content. This technique is most useful when a Web page has one main content area, rather than a set of content areas that are equally important.&#8221;
	</p>
<p class="source">
		<a href="http://www.w3.org/TR/2008/NOTE-WCAG20-TECHS-20081211/G1.html">Adding a link at the top of each page that goes directly to the main content area</a>
	</p>
</blockquote>
<p>
	For a website to pass this success criteria, the following tests must be passed:
</p>
<ul>
<li>Check that a link is the first focusable control on the Web page.</li>
<li>Check that the description of the link communicates that it links to the main content.</li>
<li>Check that the link is either always visible or visible when it has keyboard focus.</li>
<li>Check that activating the link moves the focus to the main content.</li>
<li>Check that after activating the link, the keyboard focus has moved to the main content.</li>
</ul>
<h3>
	Debate 1: NAME vs ID<br />
</h3>
<p>
	Example 1 &#8211; using an NAME attribute as the target
</p>
<pre class="codesample"><code>&lt;a href="#content"&gt;Skip to content (Press enter)&lt;/a&gt;
&lt;div&gt;
	&lt;a name="content"&gt;Content&lt;/a&gt;
&lt;/div&gt;</code></pre>
<p>
	Example 1 &#8211; using an ID attribute as the target
</p>
<pre class="codesample"><code>&lt;a href="#content"&gt;Skip to content (Press enter)&lt;/a&gt;
&lt;div id="content"&gt;
	Content
&lt;/div&gt;</code></pre>
<p>
	Many years ago, browsers like IE5 used to have trouble with linking to ID&#8217;s. For this reason, many Accessibiltiy Experts recommended using the NAME attribute. however, this practice is not recommended any more. In fact, if you are using HTML5, then using the NAME attribute will throw a warning.
</p>
<h3>
	Debate 2: Visible skip links<br />
</h3>
<p>
	Ideally, skip links should be visible to all users. This allows not only screen reader users, but those who navigate with the keyboard to see these links immediately.
</p>
<p>
	However, many clients do not like visible skip links on their sites. An acceptable alternative is to use skip links that become visible when it receives keyboard focus &#8211; ie when a user tabs through the page.
</p>
<h3>
	Examples<br />
</h3>
<p>
	Here are three example pages &#8211; all using hidden skip links that become available once the user has given them focus.
</p>
<ul>
<li><a href="http://maxdesign.com.au/jobs/example-skip/01.htm">Skip example 01 &#8211; using &#8220;id&#8221; as a target &#8211; HTML5</a></li>
<li><a href="http://maxdesign.com.au/jobs/example-skip/02.htm">Skip example 02 &#8211; using &#8220;name&#8221; as a target &#8211; HTML4.01 strict</a></li>
<li><a href="http://maxdesign.com.au/jobs/example-skip/03.htm">Skip example 03 &#8211; using &#8220;name&#8221; as a target &#8211; HTML5</a></li>
</ul>
<p>
	The CSS code used in these example:
</p>
<pre class="codesample"><code>.skipLink a
{
	position: absolute;
	left: -1000px;
	z-index: 2;
	margin: 0;
	padding: .5em;
	background: #fff;
	font-size: 200%;
	font-weight: bold;
	text-decoration: none;
}

.skipLink a:active,
.skipLink a:focus,
.skipLink a:hover
{
	display: inline;
	top: 0;
	left: 0;
	color: #fff;
	background: #000;
}</code></pre>
]]></content:encoded>
			<wfw:commentRss>http://www.maxdesign.com.au/2012/02/02/skip-links/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Some links for light reading (31/1/12)</title>
		<link>http://www.maxdesign.com.au/2012/02/01/some-links-360/</link>
		<comments>http://www.maxdesign.com.au/2012/02/01/some-links-360/#comments</comments>
		<pubDate>Tue, 31 Jan 2012 13:16:21 +0000</pubDate>
		<dc:creator>Russ</dc:creator>
				<category><![CDATA[Links for light reading]]></category>
		<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://www.maxdesign.com.au/?p=2600</guid>
		<description><![CDATA[CSS Text Level 3 &#8211; W3C Working Draft 19 January 2012 Syntax Highlight Responsive Images: How they Almost Worked and What We Need Responsive Web Design A better photoshop grid for responsive web design New CSS3 Properties to Handle Text and Word Wrapping Naming convention in CSS CSS3 Images End-Game: Summary of Changes and Request [...]]]></description>
			<content:encoded><![CDATA[<ul>
<li><a href="http://www.w3.org/TR/2012/WD-css3-text-20120119/">CSS Text Level 3 &#8211; W3C Working Draft 19 January 2012</a></li>
<li><a href="http://syntaxhighlight.in/">Syntax Highlight</a></li>
<li><a href="http://www.alistapart.com/articles/responsive-images-how-they-almost-worked-and-what-we-need/">Responsive Images: How they Almost Worked and What We Need</a></li>
<li><a href="http://www.sitepoint.com/responsive-web-design/">Responsive Web Design</a></li>
<li><a href="http://elliotjaystocks.com/blog/a-better-photoshop-grid-for-responsive-web-design/">A better photoshop grid for responsive web design</a></li>
<li><a href="http://www.impressivewebs.com/new-css3-text-wrap/">New CSS3 Properties to Handle Text and Word Wrapping</a></li>
<li><a href="http://snook.ca/archives/html_and_css/naming-convention-in-css">Naming convention in CSS</a></li>
<li><a href="http://www.css3.info/css3-images-pre-lc/">CSS3 Images End-Game: Summary of Changes and Request for Comments</a></li>
<li><a href="http://www.brucelawson.co.uk/2012/best-of-time/">The best of [time]s</a></li>
<li><a href="http://www.css-101.org/articles/the_power_of_the_web_is_in_its_universality/strive_to_make_content_accessible_to_all.php">Did we lose track of the big picture?</a></li>
<li><a href="http://www.sitepoint.com/the-hidden-nuggets-of-wcag2-the-wonderful-world-of-alt-attributes-part-i/">The Hidden Nuggets of WCAG2: The Wonderful World of ALT Attributes, Part I</a></li>
<li><a href="http://www.dingoaccess.com/accessibility/jaws-11-and-ie-9/">JAWS 11 and IE 9</a></li>
<li><a href="http://uxdesign.smashingmagazine.com/2012/01/12/inclusive-design/">Inclusive Design</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.maxdesign.com.au/2012/02/01/some-links-360/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Some links for light reading (16/12/11)</title>
		<link>http://www.maxdesign.com.au/2011/12/16/some-links-359/</link>
		<comments>http://www.maxdesign.com.au/2011/12/16/some-links-359/#comments</comments>
		<pubDate>Thu, 15 Dec 2011 20:25:18 +0000</pubDate>
		<dc:creator>Russ</dc:creator>
				<category><![CDATA[Links for light reading]]></category>
		<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://www.maxdesign.com.au/?p=2597</guid>
		<description><![CDATA[HTML5 and CSS3 Advent 2011 Designing for the Web: Templates and Grid Systems An Introduction To Object Oriented CSS (OOCSS) CSS Image Values and Replaced Content Module Level 3 On HTML and CSS best practices Some Lesser Known Features of LESS Introducing ECMAScript 5.1 Discover the Color Palette of Any Website Poll Results: Ideal Page [...]]]></description>
			<content:encoded><![CDATA[<ul>
<li><a href="http://html5advent2011.digitpaint.nl/">HTML5 and CSS3 Advent 2011</a></li>
<li><a href="http://designfestival.com/designing-for-the-web-templates-and-grid-systems/">Designing for the Web: Templates and Grid Systems</a></li>
<li><a href="http://coding.smashingmagazine.com/2011/12/12/an-introduction-to-object-oriented-css-oocss/">An Introduction To Object Oriented CSS (OOCSS)</a></li>
<li><a href="http://www.w3.org/TR/2011/WD-css3-images-20111206/">CSS Image Values and Replaced Content Module Level 3</a></li>
<li><a href="http://csswizardry.com/2011/12/on-html-and-css-best-practices/">On HTML and CSS best practices</a></li>
<li><a href="http://www.viget.com/inspire/some-lesser-known-features-of-less/">Some Lesser Known Features of LESS</a></li>
<li><a href="http://dev.opera.com/articles/view/introducing-ecmascript-5-1/">Introducing ECMAScript 5.1</a></li>
<li><a href="http://thinkvitamin.com/design/discover-the-color-palette-of-any-website/">Discover the Color Palette of Any Website</a></li>
<li><a href="http://css-tricks.com/15477-poll-results-ideal-page-size/">Poll Results: Ideal Page Size</a> </li>
<li><a href="http://shapecatcher.com/">Shapecatcher.com: Unicode Character Recognition</a></li>
<li><a href="http://www.alistapart.com/articles/what-i-learned-about-the-web-in-2011/">What I Learned About the Web in 2011</a></li>
<li><a href="http://magain.com/blog/article/124/give-your-users-a-hollywood-experience">Give Your Users A Hollywood Experience</a></li>
<li><a href="http://www.sitepoint.com/the-hidden-nuggets-of-wcag2-when-not-to-use-alt-attributes/">The Hidden Nuggets of WCAG2: When Not to Use ALT Attributes</a></li>
<li><a href="http://webaim.org/blog/alexa-100-accessibility-errors/">Alexa 100 Accessibility Errors</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.maxdesign.com.au/2011/12/16/some-links-359/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Some links for light reading (6/12/11)</title>
		<link>http://www.maxdesign.com.au/2011/12/06/some-links-358/</link>
		<comments>http://www.maxdesign.com.au/2011/12/06/some-links-358/#comments</comments>
		<pubDate>Tue, 06 Dec 2011 07:27:42 +0000</pubDate>
		<dc:creator>Russ</dc:creator>
				<category><![CDATA[Links for light reading]]></category>
		<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://www.maxdesign.com.au/?p=2595</guid>
		<description><![CDATA[How to make the web more accessible? WAI-ARIA Gets Ready for a Starring Role in HTML5 Talk is cheap – screen reader testing on mobile HTML5 canvas accessibility discussions 2009-2011 Video Subtitling and WebVTT Designing for the Web: Resolution and Size Getting Started with Sass PrefixFree: Break Free From CSS Prefix Hell &#8216;Mobile first&#8217; CSS [...]]]></description>
			<content:encoded><![CDATA[<ul>
<li><a href="http://a11ybugs.org/article.php?id=2">How to make the web more accessible?</a></li>
<li><a href="http://www.webmonkey.com/2011/11/wai-aria-gets-ready-for-a-starring-role-in-html5/">WAI-ARIA Gets Ready for a Starring Role in HTML5</a></li>
<li><a href="http://www.iheni.com/talk-is-cheap-screen-reader-testing-on-mobile/">Talk is cheap – screen reader testing on mobile</a></li>
<li><a href="http://www.paciellogroup.com/blog/2011/12/html5-canvas-accessibility-discussions-2009-2011/">HTML5 canvas accessibility discussions 2009-2011</a></li>
<li><a href="http://html5doctor.com/video-subtitling-and-webvtt/">Video Subtitling and WebVTT</a></li>
<li><a href="http://designfestival.com/designing-for-the-web-resolution-and-size/">Designing for the Web: Resolution and Size</a></li>
<li><a href="http://www.alistapart.com/articles/getting-started-with-sass/">Getting Started with Sass</a></li>
<li><a href="http://coding.smashingmagazine.com/2011/10/12/prefixfree-break-free-from-css-prefix-hell/">PrefixFree: Break Free From CSS Prefix Hell</a></li>
<li><a href="http://nicolasgallagher.com/mobile-first-css-sass-and-ie/">&#8216;Mobile first&#8217; CSS and getting Sass to help with legacy IE</a></li>
<li><a href="http://www.impressivewebs.com/reverse-ordered-lists-html5/">Reverse Ordered Lists in HTML5</a></li>
<li><a href="http://css-tricks.com/15358-numbering-in-style/">Numbering In Style</a></li>
<li><a href="http://www.456bereastreet.com/archive/201112/the_difference_between_widthauto_and_width100/">The difference between width:auto and width:100%</a></li>
<li><a href="http://adactio.com/journal/5042/">Journal—Clean conditional loading</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.maxdesign.com.au/2011/12/06/some-links-358/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Some links for light reading (29/11/11)</title>
		<link>http://www.maxdesign.com.au/2011/11/29/some-links-357/</link>
		<comments>http://www.maxdesign.com.au/2011/11/29/some-links-357/#comments</comments>
		<pubDate>Mon, 28 Nov 2011 20:21:45 +0000</pubDate>
		<dc:creator>Russ</dc:creator>
				<category><![CDATA[Links for light reading]]></category>
		<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://www.maxdesign.com.au/?p=2593</guid>
		<description><![CDATA[How To Set Up A Print Style Sheet CSS3 Animations: the Hiccups and Bugs You’ll Want to Avoid Original Hover Effects with CSS3 15 Amazing CSS3 Text Effects Accessibility for Information Architects HTML5 Accessibility Chops: using nested figure elements Web Design Showcase of Textured Websites Master version control with Git How to Validate and Test [...]]]></description>
			<content:encoded><![CDATA[<ul>
<li><a href="http://coding.smashingmagazine.com/2011/11/24/how-to-set-up-a-print-style-sheet/">How To Set Up A Print Style Sheet</a> </li>
<li><a href="http://webdesign.tutsplus.com/tutorials/htmlcss-tutorials/css3-animations-the-hiccups-and-bugs-youll-want-to-avoid/">CSS3 Animations: the Hiccups and Bugs You’ll Want to Avoid</a></li>
<li><a href="http://tympanus.net/Tutorials/OriginalHoverEffects/index.html">Original Hover Effects with CSS3</a></li>
<li><a href="http://smashinghub.com/15-amazing-css3-text-effects.htm">15 Amazing CSS3 Text Effects</a></li>
<li><a href="http://www.spotlessinteractive.com/articles/accessibility/accessibility-for-information-architects.php">Accessibility for Information Architects</a></li>
<li><a href="http://www.paciellogroup.com/blog/2011/11/html5-accessibility-chops-using-nested-figure-elements/">HTML5 Accessibility Chops: using nested figure elements</a></li>
<li><a href="http://www.onextrapixel.com/2011/11/25/web-design-showcase-of-textured-websites/">Web Design Showcase of Textured Websites</a></li>
<li><a href="http://www.netmagazine.com/tutorials/master-version-control-git">Master version control with Git</a></li>
<li><a href="http://designfestival.com/how-to-validate-test-your-designs-for-the-mobile-web/">How to Validate and Test Your Designs for the Mobile Web</a></li>
<li><a href="http://www.uxbooth.com/blog/mobile-design-patters/">A look inside mobile design patterns</a></li>
<li><a href="http://www.sitepoint.com/why-seo-comes-first/">Why SEO Comes First</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.maxdesign.com.au/2011/11/29/some-links-357/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Some links for light reading (23/11/11)</title>
		<link>http://www.maxdesign.com.au/2011/11/23/some-links-356/</link>
		<comments>http://www.maxdesign.com.au/2011/11/23/some-links-356/#comments</comments>
		<pubDate>Wed, 23 Nov 2011 12:25:24 +0000</pubDate>
		<dc:creator>Russ</dc:creator>
				<category><![CDATA[Links for light reading]]></category>
		<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://www.maxdesign.com.au/?p=2590</guid>
		<description><![CDATA[Accessibility Barrier Scores Latest ARIA landmark support data HTML5 Semantics Seven Mistakes That Make Websites Slow Radial Gradient Readability Closure Stylesheets Vendor prefixes have failed, what&#8217;s next? Image Tint With CSS Screen readers and CSS Pattern primer CSS Tab Designer How to Test Your HTML Email Newsletter Before You Hit Send The ALA 2011 Web [...]]]></description>
			<content:encoded><![CDATA[<ul>
<li><a href="http://www.dingoaccess.com/accessibility/accessibility-barrier-scores-2/">Accessibility Barrier Scores</a></li>
<li><a href="http://www.paciellogroup.com/blog/2011/11/latest-aria-landmark-support-data/">Latest ARIA landmark support data</a></li>
<li><a href="http://coding.smashingmagazine.com/2011/11/18/html5-semantics/">HTML5 Semantics</a></li>
<li><a href="http://www.sitepoint.com/seven-mistakes-that-make-websites-slow/">Seven Mistakes That Make Websites Slow</a></li>
<li><a href="http://www.css3.info/radial-gradient-readability/">Radial Gradient Readability</a></li>
<li><a href="http://code.google.com/p/closure-stylesheets/">Closure Stylesheets</a></li>
<li><a href="http://lea.verou.me/2011/11/vendor-prefixes-have-failed-whats-next/">Vendor prefixes have failed, what&#8217;s next?</a></li>
<li><a href="http://www.impressivewebs.com/image-tint-blend-css/">Image Tint With CSS</a></li>
<li><a href="http://www.456bereastreet.com/archive/201111/screen_readers_and_css/">Screen readers and CSS</a></li>
<li><a href="http://adactio.com/journal/5028/">Pattern primer</a></li>
<li><a href="http://www.highdots.com/products/css-tab-designer/">CSS Tab Designer</a></li>
<li><a href="http://designfestival.com/how-to-test-your-html-email-newsletter-before-you-hit-send/">How to Test Your HTML Email Newsletter Before You Hit Send</a></li>
<li><a href="http://www.alistapart.com/articles/the-ala-2011-web-design-survey/">The ALA 2011 Web Design Survey</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.maxdesign.com.au/2011/11/23/some-links-356/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Some links for light reading (08/11/11)</title>
		<link>http://www.maxdesign.com.au/2011/11/08/some-links-355/</link>
		<comments>http://www.maxdesign.com.au/2011/11/08/some-links-355/#comments</comments>
		<pubDate>Tue, 08 Nov 2011 08:02:32 +0000</pubDate>
		<dc:creator>Russ</dc:creator>
				<category><![CDATA[Links for light reading]]></category>
		<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://www.maxdesign.com.au/?p=2588</guid>
		<description><![CDATA[Measuring accessibility A common accessibility platform Accessibility Testing: Correction Scenarios Detecting if images are disabled in browsers The Hidden Nuggets of WCAG2: Information Relationships The Future Of CSS: Embracing The Machine An inside view of the CSS Working group at W3C Build-along #1, reflection and reasoning The Subtleties of CSS3 Transitions Adactio: Journal—Timeless The [time] [...]]]></description>
			<content:encoded><![CDATA[<ul>
<li><a href="http://www.dingoaccess.com/accessibility/measuring-accessibility/">Measuring accessibility</a></li>
<li><a href="http://a11ybugs.org/article.php?id=1">A common accessibility platform</a></li>
<li><a href="http://simplyaccessible.com/article/accessibility-testing-correction-scenarios/">Accessibility Testing: Correction Scenarios</a></li>
<li><a href="http://www.paciellogroup.com/blog/2011/10/detecting-if-images-are-disabled-in-browsers/">Detecting if images are disabled in browsers</a></li>
<li><a href="http://www.sitepoint.com/the-hidden-nuggets-of-wcag2-information-relationships/">The Hidden Nuggets of WCAG2: Information Relationships</a></li>
<li><a href="http://coding.smashingmagazine.com/2011/11/07/the-future-of-css-embracing-the-machine/">The Future Of CSS: Embracing The Machine</a></li>
<li><a href="http://fantasai.inkedblade.net/weblog/2011/inside-csswg/">An inside view of the CSS Working group at W3C</a></li>
<li><a href="http://csswizardry.com/2011/11/build-along-1-reflection-and-reasoning/">Build-along #1, reflection and reasoning</a></li>
<li><a href="http://www.impressivewebs.com/subtleties-css3-transitions/">The Subtleties of CSS3 Transitions</a></li>
<li><a href="http://adactio.com/journal/4982/">Adactio: Journal—Timeless</a></li>
<li><a href="http://www.glazman.org/weblog/dotclear/index.php?post/2011/11/05/The-time-fiasco">The [time] fiasco</a></li>
<li><a href="http://www.netmagazine.com/news/w3c-restores-time-element-html5-111539">W3C restores &#8220;time&#8221; element to HTML5</a></li>
<li><a href="http://www.sitepoint.com/building-web-pages-with-local-storage/">Building Web Pages with Local Storage</a></li>
<li><a href="http://www.alistapart.com/articles/dark-patterns-deception-vs.-honesty-in-ui-design/">Dark Patterns: Deception vs. Honesty in UI Design</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.maxdesign.com.au/2011/11/08/some-links-355/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Emptying my cup</title>
		<link>http://www.maxdesign.com.au/2011/11/02/emptying-my-cup/</link>
		<comments>http://www.maxdesign.com.au/2011/11/02/emptying-my-cup/#comments</comments>
		<pubDate>Tue, 01 Nov 2011 20:51:27 +0000</pubDate>
		<dc:creator>Russ</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://www.maxdesign.com.au/?p=2584</guid>
		<description><![CDATA[I am just about to begin work on a very large responsive design website project. While I have been building responsive websites for some time, I have decided to take some time to &#8220;empty my cup&#8221; and reinvestigate responsive design from the ground up. So, I&#8217;d love to hear from you! What&#8217;s your favourite online [...]]]></description>
			<content:encoded><![CDATA[<p>I am just about to begin work on a very large responsive design website project. While I have been building responsive websites for some time, I have decided to take some time to <a href="http://users.rider.edu/~suler/zenstory/emptycup.html">&#8220;empty my cup&#8221;</a> and reinvestigate responsive design from the ground up. </p>
<p>So, I&#8217;d love to hear from you!</p>
<ol>
<li>What&#8217;s your favourite online responsive design article/tutorial?</li>
<li>Have you built a responsive design site recently? If so, what was the single most important lesson you learned during the process (plus a URL if you&#8217;re willing to share)?</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://www.maxdesign.com.au/2011/11/02/emptying-my-cup/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
	</channel>
</rss>

