<?xml version="1.0" encoding="ISO-8859-1"?>

<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/">
	<channel>
		<title><![CDATA[SitePoint Forums - Accessibility & Usability]]></title>
		<link>http://www.sitepoint.com/forums/</link>
		<description>This forum deals with questions about helping users to access sites and use the web regardless of circumstances—be they blind, or unable to use a mouse, or just unfamiliar with a website and its contents.</description>
		<language>en</language>
		<lastBuildDate>Thu, 23 May 2013 21:43:01 GMT</lastBuildDate>
		<generator>vBulletin</generator>
		<ttl>60</ttl>
		<image>
			<url>http://www.sitepoint.com/forums/images/sitepoint/misc/rss.png</url>
			<title><![CDATA[SitePoint Forums - Accessibility & Usability]]></title>
			<link>http://www.sitepoint.com/forums/</link>
		</image>
		<item>
			<title><![CDATA[Good or Bad: "Randomizing" Article Links]]></title>
			<link>http://www.sitepoint.com/forums/showthread.php?1076320-Good-or-Bad-quot-Randomizing-quot-Article-Links&amp;goto=newpost</link>
			<pubDate>Tue, 21 May 2013 23:02:53 GMT</pubDate>
			<description><![CDATA[I just added a "Section Landing Page" to my website, which lists all of the related "Sub-Sections" for the chosen "Section". 
 
Each Sub-Section is displayed as a box with two parts. 
 
On the left hand side is a "Featured Article" which displays a Heading, Thumbnail, and Summary. 
 
On the right...]]></description>
			<content:encoded><![CDATA[<div>I just added a &quot;Section Landing Page&quot; to my website, which lists all of the related &quot;Sub-Sections&quot; for the chosen &quot;Section&quot;.<br />
<br />
Each Sub-Section is displayed as a box with two parts.<br />
<br />
On the left hand side is a &quot;Featured Article&quot; which displays a Heading, Thumbnail, and Summary.<br />
<br />
On the right hand side is a list of 5 &quot;Featured Article Links&quot;.<br />
<br />
All of these ultimately lead the user to the actual Article itself.<br />
<br />
So on to my question...<br />
<br />
<b>If every time someone visits this page, I change the order of the &quot;Featured Article&quot; and &quot;Featured Article Links&quot;, would that be a good or bad thing?!</b><br />
<br />
My motivation for &quot;randomizing&quot; the order is that it hopefully helps people to see different Article Headings, and thus maybe encourages people to read Articles they may not have seen or paid attention to their first visit.<br />
<br />
If this idea seems legit, I may make it even more sophisticated, but adding &quot;weighting&quot; to each Article, so that *important* ones show up more often as the &quot;Featured Article&quot;.<br />
<br />
The only down-side I can see to this, is if a person hit the &quot;Back&quot; button on their browser, it might confuse them if the Article they just saw had moved...  :blush:<br />
<br />
What do you guys think?!<br />
<br />
Sincerely,<br />
<br />
<br />
Debbie</div>

]]></content:encoded>
			<category domain="http://www.sitepoint.com/forums/forumdisplay.php?191-Accessibility-amp-Usability"><![CDATA[Accessibility & Usability]]></category>
			<dc:creator>DoubleDee</dc:creator>
			<guid isPermaLink="true">http://www.sitepoint.com/forums/showthread.php?1076320-Good-or-Bad-quot-Randomizing-quot-Article-Links</guid>
		</item>
		<item>
			<title>Links are not buttons! -- article by Karl Groves</title>
			<link>http://www.sitepoint.com/forums/showthread.php?1067624-Links-are-not-buttons!-article-by-Karl-Groves&amp;goto=newpost</link>
			<pubDate>Wed, 15 May 2013 07:47:34 GMT</pubDate>
			<description><![CDATA[http://www.karlgroves.com/2013/05/14/links-are-not-buttons-neither-are-divs-and-spans/ 
 
The basics are this (with notes added by me): 
 
- you get automatic semantics and accessibility using the right element for the job. 
- if you don't (and use something like a div or span for a button) you...]]></description>
			<content:encoded><![CDATA[<div><a href="http://www.karlgroves.com/2013/05/14/links-are-not-buttons-neither-are-divs-and-spans/" target="_blank" rel="nofollow">http://www.karlgroves.com/2013/05/14...ivs-and-spans/</a><br />
<br />
The basics are this (with notes added by me):<br />
<br />
- you get automatic semantics and accessibility using the right element for the job.<br />
- if you don't (and use something like a div or span for a button) you need to manually add in all the accessibility and functionality yourself.<br />
<br />
- links are clicked and activated with ENTER or single tap. They take you somewhere.<br />
<br />
- buttons are clicked and activated with SPACEBAR or ENTER or often double-tap (this is why single taps on buttons are sometimes slow... <a href="https://developers.google.com/mobile/articles/fast_buttons" target="_blank" rel="nofollow">browser is waiting to see if the tap is really a double tap</a>. You can get around this by using touchEnd events instead of click events for your mobile pages). They usually Do Stuff rather than take you somewhere.<br />
<br />
I'm guilty of using links to Do Stuff, quite regularly.<br />
<br />
&lt;a class=&quot;btn&quot;&gt;&lt;/a&gt;<br />
If an anchor doesn't have an href attribute, it may not be focusable (I know addThis twitter buttons didn't work in any version of IE I tested in with keyboard, solely due to lack of href). AT doesn't see anything focusable or clickable there either. It does not exist as far as they're concerned.<br />
<br />
&lt;a href=&quot;#&quot;&gt;&lt;/a&gt;<br />
If an anchor is empty and you're using a background image to show the clickable thing and its text, this can and will vanish when users have High-Contrast settings in their browser (Microsoft has a possible CSS option for reversed icons <a href="http://msdn.microsoft.com/en-us/library/windows/apps/hh465764.aspx" target="_blank" rel="nofollow">here</a> and I only know of the High-Contrast issue on Windows but if images vanish anywhere else then this also can't be a complete solution).<br />
<br />
The above link will also take users to the top of the page. Disturbing someone's focus even if visually nothing changes is a pain in the butt. <br />
<br />
<br />
-------------------------MOAR NOTES---------------------------------<br />
I've been using a non-existing hash for these: &lt;a href=&quot;#void&quot;&gt;link focus goes nowhere when clicked&lt;/a&gt;. Still, I should be using a &lt;button&gt;.<br />
<br />
If you're forced to deal with spans or divs as buttons, like trying to fix someone's jQuery plugin, you need to do *at least* all this:<br />
<br />
&lt;span <b>role=&quot;button&quot; tabindex=&quot;0&quot;</b>&gt;FAKE BUTTON&lt;/span&gt;<br />
Role of button gives it a role to browsers and AT. Tabindex makes it natively focusable without screwing with native tab order (don't set to a number larger than 1). Even so, now you can focus on it but can't activate it.<br />
<br />
In your Javascript onclick method you need to add an onkeyup or onkeypress or whatever your favourite is and test for ENTER and SPACEBAR. <br />
Here's a chunk I did for a jQuery plugin our company uses but by default only works with the mouse:<br />
<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<hr /><code class="bbcode_code">var resetbtn = item.find('.rateit-reset');<br />
&nbsp; &nbsp; if (stuff is true...) {<br />
&nbsp; &nbsp; &nbsp; &nbsp; resetbtn.click(function () {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; //does stuff onClick;<br />
&nbsp; &nbsp; &nbsp; &nbsp; });<br />
<br />
&nbsp; &nbsp; <b>//is role=button, but not natively clickable<br />
&nbsp; &nbsp; &nbsp; &nbsp; resetbtn.keyup(function(e) {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; var code = e.which;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; if ((code === 13) || (code === 32)) {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; $(this).click();<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }&nbsp;  <br />
&nbsp; &nbsp; &nbsp; &nbsp; }); </b><br />
&nbsp; &nbsp; }</code><hr />
</div></div>

]]></content:encoded>
			<category domain="http://www.sitepoint.com/forums/forumdisplay.php?191-Accessibility-amp-Usability"><![CDATA[Accessibility & Usability]]></category>
			<dc:creator>Stomme poes</dc:creator>
			<guid isPermaLink="true">http://www.sitepoint.com/forums/showthread.php?1067624-Links-are-not-buttons!-article-by-Karl-Groves</guid>
		</item>
		<item>
			<title>Modern Accessibility with Javascript and WAI-ARIA</title>
			<link>http://www.sitepoint.com/forums/showthread.php?1067543-Modern-Accessibility-with-Javascript-and-WAI-ARIA&amp;goto=newpost</link>
			<pubDate>Wed, 15 May 2013 07:20:20 GMT</pubDate>
			<description>Paul J Adam has made a really simple resource for web developers concerning web accessibility and Javascript. It looks like something handy to bookmark if accessible Javascript is new to you, or you want to remember a technique. Lots of links and tests in there too. 
...</description>
			<content:encoded><![CDATA[<div>Paul J Adam has made a really simple resource for web developers concerning web accessibility and Javascript. It looks like something handy to bookmark if accessible Javascript is new to you, or you want to remember a technique. Lots of links and tests in there too.<br />
<br />
<a href="http://pauljadam.com/moderna11y/" target="_blank" rel="nofollow">http://pauljadam.com/moderna11y/</a><br />
<br />
Check it out!</div>

]]></content:encoded>
			<category domain="http://www.sitepoint.com/forums/forumdisplay.php?191-Accessibility-amp-Usability"><![CDATA[Accessibility & Usability]]></category>
			<dc:creator>Stomme poes</dc:creator>
			<guid isPermaLink="true">http://www.sitepoint.com/forums/showthread.php?1067543-Modern-Accessibility-with-Javascript-and-WAI-ARIA</guid>
		</item>
		<item>
			<title>JavaScript Popup: SEO, Accessability?</title>
			<link>http://www.sitepoint.com/forums/showthread.php?1060526-JavaScript-Popup-SEO-Accessability&amp;goto=newpost</link>
			<pubDate>Fri, 10 May 2013 20:11:14 GMT</pubDate>
			<description>Hi everyone, 
I have a question about SEO and accessibility. 
 
Our programmer added this JavaScript popup to our website. It pops up on the first page that you go to and is as follows: 
 
 
---Quote--- 
If you are planning to use the shopping basket during your current session, please consider...</description>
			<content:encoded><![CDATA[<div>Hi everyone,<br />
I have a question about SEO and accessibility.<br />
<br />
Our programmer added this JavaScript popup to our website. It pops up on the first page that you go to and is as follows:<br />
<br />
<div class="bbcode_container">
	<div class="bbcode_description">Quote:</div>
	<div class="bbcode_quote printable">
		<hr />
		
			If you are planning to use the shopping basket during your current session, please consider giving us an email address that we can use to recover your shopping basket items in case something goes wrong (which sometimes happens).<br />
<br />
1. This is completely optional but strongly advised.<br />
2. We will not use this email address for any other purpose than shopping basket recovery.<br />
3. Leave the box blank if you do not wish to use this feature.<br />
4. If you want, you can set this email address from the shopping basket page later.<br />
5. Also, consider signing up for a free membership! That way your shopping basket items are always saved!<br />
<br />
You shouldn't be seeing this message again anytime soon.<br />
<br />
Please enter an email address below or click 'Cancel'
			
		<hr />
	</div>
</div>It contains a  description of what the issue is with recovering shopping baskets that may otherwise be non-cached on the client's browser.  (They walk away from their computer for a week and come back, expecting the shopping basket to still be there.  We have a user login and a wishlist system too but they don't seem to understand that this is typically only a sign in and save feature for websites)<br />
<br />
On the iPhone and iPad I can't read this JavaScript popup text at all because it is way too big for the screen.  I also have questions about whether this is hurting SEO or not, it seems to definitely be a downgrade for accessibility.  It will go away if you click Cancel but I can also just see it as a bad experience for a customer's first impression of the website.<br />
<br />
Any thoughts and opinions on it?<br />
Thanks,</div>

]]></content:encoded>
			<category domain="http://www.sitepoint.com/forums/forumdisplay.php?191-Accessibility-amp-Usability"><![CDATA[Accessibility & Usability]]></category>
			<dc:creator>revlimiter</dc:creator>
			<guid isPermaLink="true">http://www.sitepoint.com/forums/showthread.php?1060526-JavaScript-Popup-SEO-Accessability</guid>
		</item>
		<item>
			<title>Web Trust Seals</title>
			<link>http://www.sitepoint.com/forums/showthread.php?1058510-Web-Trust-Seals&amp;goto=newpost</link>
			<pubDate>Thu, 09 May 2013 18:43:57 GMT</pubDate>
			<description>I could not think of any other forum section that this would fit into, so here goes nothing. 
 
I am interested in building web trust to my website.  
 
I found the following: 
 
* Web of Trust (http://www.mywot.com/en/trustseal/comparison) 
* Semantic Site Safe...</description>
			<content:encoded><![CDATA[<div>I could not think of any other forum section that this would fit into, so here goes nothing.<br />
<br />
I am interested in building web trust to my website. <br />
<br />
I found the following:<br />
<ul><li style=""><a href="http://www.mywot.com/en/trustseal/comparison" target="_blank" rel="nofollow">Web of Trust</a></li><li style=""><a href="http://www.symantec.com/en/uk/verisign/trust-seal/renewals-upgrades-licensing" target="_blank" rel="nofollow">Semantic Site Safe</a></li><li style=""><a href="http://ssl.comodo.com/" target="_blank" rel="nofollow">Comodo S.S.L.</a></li></ul><br />
<br />
I am interested in exploring more web trust seals. Understandably it's possible to go OTT, and I easily overspend in making myself look safe, that being said if you're paying for advertising you would want to ensure that all your potential customers trust you.</div>

]]></content:encoded>
			<category domain="http://www.sitepoint.com/forums/forumdisplay.php?191-Accessibility-amp-Usability"><![CDATA[Accessibility & Usability]]></category>
			<dc:creator>Sega</dc:creator>
			<guid isPermaLink="true">http://www.sitepoint.com/forums/showthread.php?1058510-Web-Trust-Seals</guid>
		</item>
		<item>
			<title>Looking for a Section 508 compliant HTML5/javascript Framework (UI Controls)</title>
			<link>http://www.sitepoint.com/forums/showthread.php?1056546-Looking-for-a-Section-508-compliant-HTML5-javascript-Framework-(UI-Controls)&amp;goto=newpost</link>
			<pubDate>Tue, 07 May 2013 17:49:48 GMT</pubDate>
			<description>Hello, 
I was taking a look at Kendo UI, but it appears to not be fully Section 508 compliant. Does anybody know of any UI frameworks that are? 
 
Thanks!</description>
			<content:encoded><![CDATA[<div>Hello,<br />
I was taking a look at Kendo UI, but it appears to not be fully Section 508 compliant. Does anybody know of any UI frameworks that are?<br />
<br />
Thanks!</div>

]]></content:encoded>
			<category domain="http://www.sitepoint.com/forums/forumdisplay.php?191-Accessibility-amp-Usability"><![CDATA[Accessibility & Usability]]></category>
			<dc:creator>GOLGO-13</dc:creator>
			<guid isPermaLink="true">http://www.sitepoint.com/forums/showthread.php?1056546-Looking-for-a-Section-508-compliant-HTML5-javascript-Framework-(UI-Controls)</guid>
		</item>
		<item>
			<title><![CDATA[Results from WebAIM's low-vision user survey]]></title>
			<link>http://www.sitepoint.com/forums/showthread.php?1055127-Results-from-WebAIM-s-low-vision-user-survey&amp;goto=newpost</link>
			<pubDate>Mon, 06 May 2013 09:04:35 GMT</pubDate>
			<description><![CDATA[http://webaim.org/projects/lowvisionsurvey/ 
 
Following up their successful screen reader user surveys, here's one targetting low-vision users (some of whom also use screen readers). Unlike the screen reader surveys with around 1000 respondents, this survey ended up with just 216 valid responses....]]></description>
			<content:encoded><![CDATA[<div><a href="http://webaim.org/projects/lowvisionsurvey/" target="_blank" rel="nofollow">http://webaim.org/projects/lowvisionsurvey/</a><br />
<br />
Following up their successful screen reader user surveys, here's one targetting low-vision users (some of whom also use screen readers). Unlike the screen reader surveys with around 1000 respondents, this survey ended up with just 216 valid responses. Hopefully the next low-vision survey will have more! If you know someone who regularly uses the web and has low vision, ask them if they'd be interested in the next low-vision survey, whenever WebAIM does it.<br />
<br />
While a majority of respondents were nearing middle-age or older, they reported their vision impairment isn't a result of age, but something else. A little over half wear some kind of vision correction such as glasses. A majority were regular and experienced internetters. Many used a combination of AT such as a screen reader with a magnifier, as well as the built-in browser controls for things like text enlargement or contrast settings. Unsurprisingly, a large majority of users found default web text too small, and found good colour contrast to be *very*  important.<br />
<br />
Interesting findings:<br />
<br />
- Younger people tended to use mobiles more. This likely reflects a general device trend though.<br />
- Probably reflecting the general internetting population, Windows and IE were the most popular combination. What the survey mentions as interesting is that iOS is the second-most popular OS.<br />
- Like most everyone else, they had Javascript enabled by default. <br />
What I think this means to web developers is, when you're using Javascript (ajaxy stuff especially), be aware that things like growlers and flashes/alerts may get wholly missed by users of screen magnifiers, if the alert/change is not near where they initiated the action. Screen magnifiers show a small portion of the page. So keep in mind you may want to not only use <a href="http://www.w3.org/TR/wai-aria/roles#alert" target="_blank" rel="nofollow">aria role=&quot;alert&quot;</a> on updated or new items somewhere on the page (can be announced by screen readers without moving the focus), but also some visual feedback cue near where the user initiated the action (like a &quot;buy&quot; button changing how it looks).<br />
- iThings, Android and Nokia were the three most-used mobile platforms.<br />
- Skip links were found to be of course more useful to keyboard users, and to beginners, but with the high prevalence of iOS users where both touch is the main input type and webkit's <a href="https://bugs.webkit.org/show_bug.cgi?id=17450" target="_blank" rel="nofollow">in-page-link bug</a> is present (very recently fixed), I wonder if more people would otherwise be using skip links. I mean, you wouldn't use them with webkit browsers as they don't do anything for you but move visual focus down, and don't save you from having to tab your way down to where you want your focus to be. iOS also has some kind of web rotor thing for navigation, though I don't know how popular it is. Would be an interesting question to add to the next survey.<br />
- Zoom Text (a combo screen reader and screen magnifier), JAWS and VoiceOver were the most popular &quot;screen readers&quot; (in quotes because of Zoom Text).<br />
- A great deal of users used keyboard, but generally a mixed bag, as was whether text-enlarging widgets (like the a, A, <b>A</b> things) were useful. The majority of respondents stated they like these widgets and would like more. WebAIM cautions web authors (us developers) about this though.<br />
<div class="bbcode_container">
	<div class="bbcode_description">Quote:</div>
	<div class="bbcode_quote printable">
		<hr />
		
			<div>
				Originally Posted by <strong>webAIM</strong>
				
			</div>
			<div class="message">Opinions of in-page text resizing widgets are very mixed. Respondents who always or often use a keyboard found these widgets much less useful than non-keyboard users. <b>Interestingly, those who use browser text sizing options were twice as likely to find in-page text resizing widgets very useful than those who do not use these browser settings.</b> Those with beginning internet proficiency were much more likely to find them useful than those with advanced internet proficiency.</div>
			
		<hr />
	</div>
</div> (text bolded by me)<br />
I wonder if this has something to do with sites usually using cookies with these widgets, meaning users' choices get remembered. Browsers may or may not remember enlargement settings such as CTRL++ on a per-domain basis, especially if you have various privacy settings on. For me, Firefox (with text-enlarge only) remembered domains, while right now with my current settings, Opera does not between sessions (only during sessions).<br />
It may also be that if developers bothered adding text-enlarging widgets, which work different from the &quot;zoom&quot; offered by browsers, that they probably also bothered testing what these settings looked like, and made sure their page layouts didn't break. I still encounter layouts breaking or making long scroll bars with both zoom and text-enlarge, which I use on almost every site I visit.<br />
<br />
The top 3 most problematic things (of 11) users found on websites?<br />
1. Complex page layouts<br />
2. Content that becomes unreadable when enlarged<br />
3. Poor contrast<br />
<br />
Note CAPTCHA is #4.</div>

]]></content:encoded>
			<category domain="http://www.sitepoint.com/forums/forumdisplay.php?191-Accessibility-amp-Usability"><![CDATA[Accessibility & Usability]]></category>
			<dc:creator>Stomme poes</dc:creator>
			<guid isPermaLink="true">http://www.sitepoint.com/forums/showthread.php?1055127-Results-from-WebAIM-s-low-vision-user-survey</guid>
		</item>
		<item>
			<title><![CDATA[Are these URL's too long??]]></title>
			<link>http://www.sitepoint.com/forums/showthread.php?1049891-Are-these-URL-s-too-long&amp;goto=newpost</link>
			<pubDate>Tue, 30 Apr 2013 14:45:02 GMT</pubDate>
			<description><![CDATA[Are the following URL's too long or complex from a Usability standpoint... 
 
Code: 
--------- 
www.mysite.com/finance/accounting/why-you-should-hire-a-cpa 
 
www.mysite.com/legal/s-corp/benefits-of-incorporating-your-small-business 
 
www.mysite.com/legal/online/make-sure-you-are-charging-sales-tax]]></description>
			<content:encoded><![CDATA[<div>Are the following URL's too long or complex from a Usability standpoint...<br />
<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<hr /><code class="bbcode_code">www.mysite.com/finance/accounting/why-you-should-hire-a-cpa<br />
<br />
www.mysite.com/legal/s-corp/benefits-of-incorporating-your-small-business<br />
<br />
www.mysite.com/legal/online/make-sure-you-are-charging-sales-tax<br />
<br />
www.mysite.com/marketing/going-live/how-to-tell-the-world-about-your-new-business</code><hr />
</div><br />
They follow this simple pattern...<br />
<br />
<div style="margin-left:40px"><font color="#A52A2A">Category &gt; Sub-Category &gt; Article</font></div><br />
<br />
My website is very complex from a Content-perspective, but in my opinion, the above scheme has helped me whittle things down to something very manageable.<br />
<br />
Unfortunately, I have one person who is protesting, and says that my URL's are way to long?! :-/<br />
<br />
(Apparently he hasn't been to Amazon.com lately...)  :lol:<br />
<br />
What do you think?<br />
<br />
Sincerely,<br />
<br />
<br />
Debbie</div>

]]></content:encoded>
			<category domain="http://www.sitepoint.com/forums/forumdisplay.php?191-Accessibility-amp-Usability"><![CDATA[Accessibility & Usability]]></category>
			<dc:creator>DoubleDee</dc:creator>
			<guid isPermaLink="true">http://www.sitepoint.com/forums/showthread.php?1049891-Are-these-URL-s-too-long</guid>
		</item>
		<item>
			<title>Best practices for 4 level navigation</title>
			<link>http://www.sitepoint.com/forums/showthread.php?1049824-Best-practices-for-4-level-navigation&amp;goto=newpost</link>
			<pubDate>Tue, 30 Apr 2013 11:48:45 GMT</pubDate>
			<description><![CDATA[Hi there,  
 
What are the best practices for a four level navigation? 
 
I've been looking into a few options but was just wondering what everyone's thoughts are. 
 
Here's what I've been looking at 
 
 
1. Mega menu]]></description>
			<content:encoded><![CDATA[<div>Hi there, <br />
<br />
What are the best practices for a four level navigation?<br />
<br />
I've been looking into a few options but was just wondering what everyone's thoughts are.<br />
<br />
Here's what I've been looking at<br />
<br />
<ol class="decimal"><li style="">Mega menu</li><li style="">LHS navigation for all levels with expand collapse</li><li style="">LHS navigation for level 1 &amp; 2 then tabs for level 3 &amp; 4</li><li style="">Tabs for level 1 &amp; 2 then LHS navigation for level 3 &amp; 4 </li></ol><br />
<br />
Its a revamp of an admin console for setting up one of our products and is currently using a 3 level navigation but after dealing with the support issues I'd like to split level 3 into sections.<br />
<br />
Here's an example of the current navigation<br />
<br />
toolbar<br />
tabs<br />
sub tabs<br />
<br />
Actually just had a thought, maybe i could have a drop down on the existing toolbar items to show the level 2 nav, then from there have the tabs (level 3) then introduce level 4 as the sub tabs... interesting.... will go investigate<br />
<br />
Thanks<br />
Gillian</div>

]]></content:encoded>
			<category domain="http://www.sitepoint.com/forums/forumdisplay.php?191-Accessibility-amp-Usability"><![CDATA[Accessibility & Usability]]></category>
			<dc:creator>gillian</dc:creator>
			<guid isPermaLink="true">http://www.sitepoint.com/forums/showthread.php?1049824-Best-practices-for-4-level-navigation</guid>
		</item>
	</channel>
</rss>
