<?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>Thinking Accessible &#187; Web Accessibility</title>
	<atom:link href="http://thinkingaccessible.com/category/accessibility/feed/" rel="self" type="application/rss+xml" />
	<link>http://thinkingaccessible.com</link>
	<description>Making web accessiblity accessible to you.</description>
	<lastBuildDate>Sun, 01 Jan 2012 22:44:58 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
		<item>
		<title>Ultimate checklist for making your plugin accessible</title>
		<link>http://thinkingaccessible.com/ultimate-checklist-for-making-your-plugin-accessible/</link>
		<comments>http://thinkingaccessible.com/ultimate-checklist-for-making-your-plugin-accessible/#comments</comments>
		<pubDate>Sun, 01 Jan 2012 15:00:40 +0000</pubDate>
		<dc:creator>Rocío</dc:creator>
				<category><![CDATA[Web Accessibility]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[aria]]></category>
		<category><![CDATA[color contrast]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[navigation]]></category>
		<category><![CDATA[wai-aria]]></category>

		<guid isPermaLink="false">http://thinkingaccessible.com/?p=297</guid>
		<description><![CDATA[HTML  code semantics, forms, tables, Use CSS, Tabbed navigation, Colour contrast, WAI-ARIA attributes. HTML code semantics Following HTML code semantics is fundamental in making your web applications accessible because assistive technologies, like screen readers, rely on the code to transmit the correct information to the user. Forms are communly inaccurate due to a lack of the label [...]]]></description>
			<content:encoded><![CDATA[<ul>
<li><a href="#acode"><abbr title="Hyper Text Markup Language">HTML</abbr>  code semantics</a>,
<ul>
<li>forms,</li>
<li>tables,</li>
</ul>
</li>
<li><a href="#acss">Use <abbr title="Cascading Style Sheet">CSS</abbr></a>,</li>
<li><a href="#atab">Tabbed navigation</a>,</li>
<li><a href="#acolour">Colour contrast</a>,</li>
<li><a href="#aaria">WAI-ARIA attributes</a>.</li>
</ul>
<h2 id="acode"><abbr title="Hyper Text Markup Language">HTML</abbr> code semantics</h2>
<p>Following <abbr title="Hyper Text Markup Language">HTML</abbr> code semantics is fundamental in making your web applications accessible because <a href="http://en.wikipedia.org/wiki/Assistive_technology#Accessible_input_devices_for_computers">assistive technologies</a>, like screen readers, rely on the code to transmit the correct information to the user.</p>
<p>Forms are communly inaccurate due to a lack of the label tag or the misuse of the input fields.(Check out the <a href="http://www.w3.org/TR/html4/interact/forms.html"><abbr title="world wide web consortium">W3C</abbr> for forms in HTML4</a> or <a href="http://www.w3.org/TR/html5/forms.html">W3C for forms in HTML5</a>.)</p>
<p>Another commun mistakes involves data tables weither by not structuring your table with the proper elements or  by adding visual attributes that should go in the CSS, (Check out <a href="http://www.w3.org/TR/html4/struct/tables.html">W3C for tables in HTML4</a> or <a href="http://www.w3.org/TR/html5/tabular-data.html">W3C for tables in HTML5</a>.)</p>
<p>Follow W3C standards to the letter and you will have a good start.</p>
<h2 id="acss">Use CSS</h2>
<p>To keep the integrity of your code separate content from presentation. In the case of a data table, attributes like cellspacing and cellpadding should be replaced by padding of the td element in your css file. This will allow users to strip down the visuals to suit their own needs.</p>
<h2 id="atab">Tabbed Navigation</h2>
<p>Many users use only the tab key to navigate within a web browser and webpage, because they cannot use a mouse (in case of limited motor skills or blindness).</p>
<h2 id="acolour">Colour contrast</h2>
<p>There are many tools to help you choose the appropriate colour contrasts between background and foreground of your text.</p>
<ul>
<li>Web based application (<a href="http://snook.ca/technical/colour_contrast/colour.html">http://snook.ca/technical/colour_contrast/colour.html</a>)</li>
<li>Downloadable application for Windows and MAC (<a href="http://www.paciellogroup.com/resources/contrast-analyser.html">http://www.paciellogroup.com/resources/contrast-analyser.html</a>)</li>
<li>Firefox addons (<a href="https://addons.mozilla.org/en-US/firefox/addon/wcag-contrast-checker/">https://addons.mozilla.org/en-US/firefox/addon/wcag-contrast-checker/</a>)</li>
</ul>
<p>A proper ratio of luminosity assures that users with visibility issues can clearly see differences between elements. Think of users with colourblindness or eye sensitivity.</p>
<h2 id="aaria">WAI-ARIA attributes</h2>
<p>If you want to go a step further and you are coding in HTML5, you can use ARIA attributes to compliment all previous steps. WAI-ARIA is a set of elements that give extra code information to assistive technologies.</p>
<p>More information about ARIA:</p>
<ul>
<li><a href="http://www.alistapart.com/articles/waiaria">http://www.alistapart.com/articles/waiaria</a></li>
<li><a href="http://stanford.edu/group/accessibility/cgi-bin/presentations/html5_a11y/">http://stanford.edu/group/accessibility/cgi-bin/presentations/html5_a11y/</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://thinkingaccessible.com/ultimate-checklist-for-making-your-plugin-accessible/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Designing a website: Top 15 things to consider for web accessibility</title>
		<link>http://thinkingaccessible.com/top-15-things-to-consider-for-web-accessibility/</link>
		<comments>http://thinkingaccessible.com/top-15-things-to-consider-for-web-accessibility/#comments</comments>
		<pubDate>Thu, 17 Mar 2011 22:47:32 +0000</pubDate>
		<dc:creator>Rocío</dc:creator>
				<category><![CDATA[Web Accessibility]]></category>
		<category><![CDATA[best practices]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[guidelines]]></category>

		<guid isPermaLink="false">http://thinkingaccessible.com/?p=279</guid>
		<description><![CDATA[Here are the main things to think about when designing a website: Maintain a design and layout consistency throughout the site, Avoid clutter, Include written transcript for any audio and visual media, Avoid multiple level menus. Do not have more than two levels, Include a sitemap when your site has embed pages, Avoid making the [...]]]></description>
			<content:encoded><![CDATA[<p>Here are the main things to think about when designing a website:</p>
<ol>
<li><a href="#design">Maintain a design and layout consistency throughout the site</a>,</li>
<li><a href="#clutter">Avoid clutter</a>,</li>
<li><a href="#transcript">Include written transcript for any audio and visual media</a>,</li>
<li><a href="#menu">Avoid multiple level menus. Do not have more than two levels</a>,</li>
<li><a href="#sitemap">Include a sitemap when your site has embed pages</a>,</li>
<li><a href="#width">Avoid making the width of content too large</a>,</li>
<li><a href="#link">Any one link should have the same title</a>,</li>
<li><a href="#titles">Make the titles of the pages clear</a>,</li>
<li><a href="#content">Content must be simple and to the point (Especially if your target audience is broad.</a>),</li>
<li><a href="#fields">Do not add default value in form fields</a>,</li>
<li><a href="#colours">Make sure that the colours of the background and foreground are well contrasted</a>,</li>
<li><a href="#font">Have a decent font-size. (14px is good.)</a>,</li>
<li><a href="#images">Avoid images with text on them</a>,</li>
<li><a href="#readmore">Don&#8217;t use &#8220;Read more&#8221; links, instead use &#8220;Read more about THE TITLE OF THE PAGE&#8221;</a>,</li>
<li><a href="#underlined">All links in the content should be underlined</a>.</li>
</ol>
<h2><a name="design"></a>Maintain a design and layout consistency throughout the site</h2>
<p>I  have rarely seen an effective switch in design or layout within the  same site. If it is absolutely required, make all changed subtle. Having  differences in webpages of one site can be confusing and frustrating  for a visually-impaired person and even for a new visitor. A  visually-impaired person often uses a screen reader to read the content  of the site to them. If within the same site the structure of the site  changes from one page to the other, it can be disorienting. The norm is  to maintain the same look and feel throughout a site, your new visitor  might feel lost when jumping to another page with a completely different  look.</p>
<h2><a name="clutter"></a>Avoid clutter</h2>
<p>Keep the layout as clear as possible. This makes it easier for the visitor to find the destination they are looking for.</p>
<h2><a name="transcript"></a>Include written transcript for any audio and visual media</h2>
<p>It’s  fair to say that this demand is not obvious to produce. But it’s not  fair to those who do not possess all senses. Food for thought!</p>
<h2><a name="menu"></a>Avoid multiple level menus. Do not have more than two levels</h2>
<p>Not  only do multiple level menus often not work properly in different  browser, especially older ones, but they are very hard to navigate by  keyboard only. Next time you see a multiple level menu try going through  the menu by click on the tab key on your keyboard. You’ll see, it won’t  be easy to get to the third level or even the second level.</p>
<h2><a name="sitemap"></a>Include a sitemap when your site has embed pages</h2>
<p>If  your site does have many sub-pages within a page, make it easier for  your visitor to get to those pages through a complete sitemap.</p>
<h2><a name="width"></a>Avoid making the width of content too large</h2>
<p>When  the width of a paragraph is too long, it is often harder on the eyes.  The reader gets tired more quickly. Those affected may include people  with learning disabilities, newbies, but even people with no known  deficiencies.</p>
<h2><a name="link"></a>Any one link should have the same title</h2>
<p>You  should avoid having the same link with different titles. For example,  the link to the contact page with the title “Contact us” should not  named “Reach us” elsewhere. We want to avoid any type of confusion that  the visitor may encounter.</p>
<h2><a name="titles"></a>Make the titles of the pages clear</h2>
<p>Be as accurate as possible when naming your pages. Think that you will be using these titles as your page’s main heading.</p>
<h2><a name="content"></a>Content must be simple and to the point</h2>
<p>Do not be verbose. Use lists whenever possible. Keep your sentences short. Use words effeciently. <a href="http://www.w3.org/TR/WCAG10-CORE-TECHS/#writing-style">Read the W3C Writing Style section. </a></p>
<h2><a name="fields"></a>Do not add a default value in the text input field</h2>
<p>The label of the text input field should be enough as to determine the desired input.</p>
<h2><a name="colours"></a>Make sure that the colours of the background and foreground are well contrasted</h2>
<p>Colour contrast can be measured with applications like the <a href="http://www.paciellogroup.com/resources/contrast-analyser.html">Contrast Analyser by The Paciello Group</a>. <a href="http://www.paciellogroup.com/resources/CCA-2.2.zip">Download the application</a>,  install it and with the pipette determine if your chosen background and  foreground colours satisfy the required contrast ratio.</p>
<h2><a name="font"></a>Have a decent font-size</h2>
<p>Make it as easy as possible to read your content. For a font like Arial, use a font-size of 14px.</p>
<h2><a name="images"></a>Avoid images with text on them</h2>
<p>If you must have text in your images, make sure to describe the image in the alt attribut.</p>
<h2><a name="readmore"></a>Don&#8217;t use &#8220;Read more&#8221; links</h2>
<p>Instead  of linking to your full page with the very commun “Read more” link or  the like add the title of what you are linking to. So if the title of  the page the link is directing to is called “The Greatest Article Ever”  have your link be “Read more about The Greatest Article Ever”. It might  be redundant for sighted people, but when you consider that these links  might be read out of context by screen reader, then it makes sense.</p>
<h2><a name="underlined"></a>All links in the content should be underlined</h2>
<p>In  terms of usability, we want to inform the visitor when a textual  information is linked to another page. Making the link a different  colour may be indistinguishable to visitors with color blindness.</p>
<p>Many of these points have other implications when implemented in practice. We’ll leave those for another post.</p>
]]></content:encoded>
			<wfw:commentRss>http://thinkingaccessible.com/top-15-things-to-consider-for-web-accessibility/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Top Accessible WordPress themes</title>
		<link>http://thinkingaccessible.com/top-accessible-wordpress-themes/</link>
		<comments>http://thinkingaccessible.com/top-accessible-wordpress-themes/#comments</comments>
		<pubDate>Wed, 05 Jan 2011 20:47:50 +0000</pubDate>
		<dc:creator>Rocío</dc:creator>
				<category><![CDATA[Reviews]]></category>
		<category><![CDATA[Web Accessibility]]></category>
		<category><![CDATA[color contrast]]></category>
		<category><![CDATA[CSS2]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[validity]]></category>
		<category><![CDATA[W3C]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://thinkingaccessible.com/?p=266</guid>
		<description><![CDATA[This assessment is very simplistic and constitutes a basic preliminary review. It is not comprehensive nor exhaustive. I chose themes from the Free Theme Directory and searched for Web Accessible and Accessibility. I narrowed my selection by considering which theme would be easily customizable, have good contrast between foreground and background, have elements in a [...]]]></description>
			<content:encoded><![CDATA[<p>This assessment is very simplistic and constitutes a basic preliminary review. It is not comprehensive nor exhaustive.</p>
<p>I chose themes from the Free Theme Directory and searched for <a href="http://wordpress.org/extend/themes/search.php?q=web+accessible">Web Accessible</a> and <a href="http://wordpress.org/extend/themes/search.php?q=accessibility">Accessibility</a>. I narrowed my selection by considering which theme would be easily customizable, have good contrast between foreground and background, have elements in a convenient location and be aesthetically pleasing as is.</p>
<p>I then used the plugin <a href="http://wordpress.org/extend/plugins/demo-data-creator/">Demo Data Creator</a> to generate more content for posts, pages, comments and categories.</p>
<p>The following themes made the cut:</p>
<p><a href="http://wordpress.org/extend/themes/precious">Precious</a> version 4.0.1<br />
At first glance the layout is pretty simple and effective. Convenient breadcrumb on top of page. Upon disabling the style sheets, nothing is out of order. Validates for XHTML 1.0 Transitional and CSS2.</p>
<p><a href="http://wordpress.org/extend/themes/stardust">Stardust</a> version 2.7<br />
Very stylish out of the box with flexible width. Has “Skip to content” and “Skip to menu” without CSS. By disabling the images, the date for each post is too dark. Validates for XHTML 1.0 Strict, but not in  CSS with 6 CSS2 errors.</p>
<p><a href="http://wordpress.org/extend/themes/whitepress">Whitepress</a> version 1.1.7<br />
This theme includes a skip to content, navigation and search form when disabling CSS. Has a nice javascript for going through the sidebar items, but also works when javascript is disabled. Uses fixed width for 1024&#215;768 resolution. Validates for XHTML 1.0 Strict, but not in  CSS with 1 CSS2 error.</p>
<p><a href="http://wordpress.org/extend/themes/dodo">Dodo</a> version 1.2.1<br />
This theme is what this website is based on. The color of the posts date and other meta information is also too light. By disabling the images, the text of the main menu has not enough contrast with its background. With a little tweek here and there, it&#8217;s really nice. Fails to validate with XHTML 1.0 Strict with 1 error, but passes CSS2.</p>
<p>Precious and Stardust passed the Firefox Accessibility Extension 1.5.61.0 rule set with only warnings signaled .The themes Whitepress (2 Fails) and Dodo (1 Fail) did not pass.</p>
<p>For validation, I used <a href="http://validator.w3.org/">Markup Validation Service</a> and <a href="http://jigsaw.w3.org/css-validator/">The W3C CSS Validation Service</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://thinkingaccessible.com/top-accessible-wordpress-themes/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>em, a unit of measure</title>
		<link>http://thinkingaccessible.com/em-a-unit-of-measure/</link>
		<comments>http://thinkingaccessible.com/em-a-unit-of-measure/#comments</comments>
		<pubDate>Mon, 08 Nov 2010 00:42:10 +0000</pubDate>
		<dc:creator>Rocío</dc:creator>
				<category><![CDATA[Web Accessibility]]></category>
		<category><![CDATA[CSS2]]></category>

		<guid isPermaLink="false">http://thinkingaccessible.com/?p=267</guid>
		<description><![CDATA[The secret of the &#8220;em&#8221; is proportions. Keeping the appropriate proportions regardless of the size. Let&#8217;s use font-sizes as an example. First, set a parent font-size as an absolute measurement. Let&#8217;s say 16 pixels in the body. All subsequent sizes use the following formula: child pixels/parent pixels = child ems. So if you want an [...]]]></description>
			<content:encoded><![CDATA[<p>The secret of the &#8220;em&#8221; is proportions. Keeping the appropriate proportions regardless of the size. Let&#8217;s use font-sizes as an example.</p>
<p>First, set a parent font-size as an absolute measurement. Let&#8217;s say 16 pixels in the body. All subsequent sizes use the following formula: child pixels/parent pixels = child ems. So if you want an h1 to have a pixel size of 24, then its em unit would be 1.5 (from 24/16).</p>
<p>Nested elements require particular attention, because they multiply on each level. If you have a div inside a div and the outer div has a font-size of 1.5em, then the inner div (div div) should be 1em to cancel its inheritance.</p>
<p>Now that the how is settled, let&#8217;s go to the why.</p>
<p>Other than WCAG 1.0 recommending the use of relative units (ei. em or %) as opposed to absolute units, there&#8217;s the fact that not all browsers deal with resizing in the same way. Some older browsers like IE6 won&#8217;t resize any absolute pixels.</p>
<p>The proper implementation of this guideline might be daunting for larger style sheets. My initial advice would be to break it down to specific sections. Have parent pixels on primary divisions and set your inner relative ems accordingly.</p>
<p>[Source: CSS for accessible web pages by Richard Rutten]</p>
]]></content:encoded>
			<wfw:commentRss>http://thinkingaccessible.com/em-a-unit-of-measure/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The deal with opening hyperlinks in a new window or tab.</title>
		<link>http://thinkingaccessible.com/the-deal-with-opening-hyperlinks-in-a-new-window-or-tab/</link>
		<comments>http://thinkingaccessible.com/the-deal-with-opening-hyperlinks-in-a-new-window-or-tab/#comments</comments>
		<pubDate>Sun, 31 Jan 2010 22:17:58 +0000</pubDate>
		<dc:creator>Rocío</dc:creator>
				<category><![CDATA[Web Accessibility]]></category>
		<category><![CDATA[Web Standards]]></category>
		<category><![CDATA[good practices]]></category>

		<guid isPermaLink="false">http://thinkingaccessible.com/?p=243</guid>
		<description><![CDATA[The main consensus is to avoid them. Why you say? Well because it&#8217;s not necessary. If you really want to open a link in another tab or window, you can do it yourself: In Firefox, hover over the link you want to access, right-click your mouse to get a menu and click on &#8220;Open Link [...]]]></description>
			<content:encoded><![CDATA[<p>The main consensus is to avoid them. Why you say? Well because it&#8217;s not necessary. If you really want to open a link in another tab or window, you can do it yourself:</p>
<p>In Firefox, hover over the link you want to access, right-click your mouse to get a menu and click on &#8220;Open Link in New Tab&#8221; or &#8220;Open Link in New Window&#8221;.</p>
<p><img class="size-full wp-image-248 alignnone" title="Firefox Right Click Menu" src="http://thinkingaccessible.com/wp-content/uploads/firefox_rightmenu.png" alt="Firefox Right Click Menu" width="204" height="284" /></p>
<p>In Internet Explorer, hover over the link you want to access, right-click your mouse to get a menu and click on &#8220;Open in New Tab&#8221; or &#8220;Open in New Window&#8221;.</p>
<p><img class="alignnone size-full wp-image-249" title="Internet Explorer Right Click Menu" src="http://thinkingaccessible.com/wp-content/uploads/ie8_rightmenu.png" alt="Internet Explorer Right Click Menu" width="251" height="418" /></p>
<p>I found other compelling reasons to avoid this habit on <a title="external link" href="http://www.accessifyforum.com/viewtopic.php?t=7344&amp;highlight=target+blank">Accessify Forum</a>. Kyle J. Lamson wrote<span>&#8220;&#8230;Forcing new windows can confuse people when it opens behind the window and they do not realize it and it is really iritating when we are reading and it blocks our view.&#8221; He also mentions that some browsers or applications do not support multiple windows. He continues by adding &#8220;If I want to return to your site, I will&#8230; either back button or because usually I open links in new tabs. But if I am just using your site as a jump off point to somewhere else&#8230; then i do not wish to remain at your site and you should not force me to.&#8221; </span></p>
<p><span>I agree with Kyle, it&#8217;s all about giving choices and not forcing anything on the user.</span></p>
<p>So use the back button or get to know your browser. Simple and efficient shortcuts will help make your web browsing experience a better one.</p>
]]></content:encoded>
			<wfw:commentRss>http://thinkingaccessible.com/the-deal-with-opening-hyperlinks-in-a-new-window-or-tab/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Pushing for Web Standards</title>
		<link>http://thinkingaccessible.com/pushing-for-web-standards/</link>
		<comments>http://thinkingaccessible.com/pushing-for-web-standards/#comments</comments>
		<pubDate>Sun, 03 Jan 2010 16:36:38 +0000</pubDate>
		<dc:creator>Rocío</dc:creator>
				<category><![CDATA[Web Accessibility]]></category>
		<category><![CDATA[Web Standards]]></category>
		<category><![CDATA[good practices]]></category>
		<category><![CDATA[guidelines]]></category>

		<guid isPermaLink="false">http://thinkingaccessible.com/?p=225</guid>
		<description><![CDATA[Websites dedicated to online awareness and magazines alike are pushing more and more the importance of Web Standards. Sites like A List Apart has been an advocate for Web Standards and Web Accessibility for years. WordPress, Joomla and other content management systems have embraced the principles of accessibility. Forums like Accessifyforum have also seen increased [...]]]></description>
			<content:encoded><![CDATA[<p>Websites dedicated to online awareness and magazines alike are pushing more and more the importance of Web Standards. Sites like <a title="external link" href="http://www.alistapart.com">A List Apart</a> has been an advocate for Web Standards and Web Accessibility for years. <a title="external link" href="http://wordpress.org">WordPress</a>, <a title="external link" href="http://joomla.org">Joomla</a> and other content management systems have embraced the principles of accessibility. Forums like <a title="external link" href="http://www.accessifyforum.com/">Accessifyforum</a> have also seen increased interest.</p>
<p>Governments and now Educational Institutions, mainly Universities are taking the matter into their hands.</p>
<p>Blogs like <a title="external link" href="http://www.prettysimple.co.uk/blog/">www.prettysimple.co.uk/blog</a> and contests like at <a href="http://www.accessibilityinfocus.co.uk/">www.accessibilityinfocus.co.uk</a> encourage and pursue the issue in terms of content, design and context. I even came across a <a href="http://www.gawds.org/">guild for accessible web designers</a>. It is hopeful to see that web professionals consider web standards as an important facet of the web experience.</p>
]]></content:encoded>
			<wfw:commentRss>http://thinkingaccessible.com/pushing-for-web-standards/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Getting Lists right</title>
		<link>http://thinkingaccessible.com/getting-lists-right/</link>
		<comments>http://thinkingaccessible.com/getting-lists-right/#comments</comments>
		<pubDate>Wed, 23 Dec 2009 13:29:27 +0000</pubDate>
		<dc:creator>Rocío</dc:creator>
				<category><![CDATA[Web Accessibility]]></category>
		<category><![CDATA[Web Standards]]></category>
		<category><![CDATA[best practices]]></category>
		<category><![CDATA[good practices]]></category>

		<guid isPermaLink="false">http://thinkingaccessible.com/lists/</guid>
		<description><![CDATA[Lists can be tricky, but as long as you keep a consistent structure and the correct sequence, lists are a piece of cake. Here are the basics to remember: Make your menus into unordered lists, Place the list inside a div, Have an H2 header with menu title (hide it if not need to be [...]]]></description>
			<content:encoded><![CDATA[<p>Lists can be tricky, but as long as you keep a consistent structure and the correct sequence, lists are a piece of cake.</p>
<p>Here are the basics to remember:</p>
<ul>
<li>Make your menus into unordered lists,</li>
<li>Place the list inside a div,</li>
<li>Have an H2 header with menu title (hide it if not need to be visible),</li>
<li>The ul has no left indentation (for browser compatibility),</li>
<li>Use display:inline for horizontal lists,</li>
<li>Breadcrumbs use nested lists,</li>
<li>Be diligent.</li>
</ul>
<p>To read more about lists: <a href="http://www.alistapart.com/articles/taminglists/">CSS Design: Taming Lists</a></p>
]]></content:encoded>
			<wfw:commentRss>http://thinkingaccessible.com/getting-lists-right/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Evaluating a website for accessibility</title>
		<link>http://thinkingaccessible.com/evaluating-a-website-for-accessibility/</link>
		<comments>http://thinkingaccessible.com/evaluating-a-website-for-accessibility/#comments</comments>
		<pubDate>Mon, 15 Jun 2009 21:08:47 +0000</pubDate>
		<dc:creator>Rocío</dc:creator>
				<category><![CDATA[Web Accessibility]]></category>
		<category><![CDATA[best practices]]></category>
		<category><![CDATA[disabilities]]></category>
		<category><![CDATA[good practices]]></category>
		<category><![CDATA[guidelines]]></category>
		<category><![CDATA[impairments]]></category>
		<category><![CDATA[tools]]></category>
		<category><![CDATA[W3C]]></category>
		<category><![CDATA[WCAG]]></category>

		<guid isPermaLink="false">http://thinkingaccessible.com/?p=140</guid>
		<description><![CDATA[The W3C has extensive information on how to properly evaluation a sites accessibility. Here are the underlining steps to ensure that your evaluation is full-proof: For a preliminary review, select a page that is representative of the whole site or that most people will see. Try to choose a page that has tabular data, images [...]]]></description>
			<content:encoded><![CDATA[<p>The W3C has extensive information on how to properly evaluation a sites accessibility. Here are the underlining steps to ensure that your evaluation is full-proof:</p>
<p>For a preliminary review, select a page that is representative of the whole site or that most people will see. Try to choose a page that has tabular data, images and scripts. And then:</p>
<ul>
<li>Examine this page for alternative text,</li>
<li> Divs instead of tables for page layout,</li>
<li> Use the keyboard instead of the mouse for navigation,</li>
<li>Test with different font-sizes and screen resolutions.</li>
</ul>
<p>The Firebug and Web Developer extensions in Firefox will make your life easier in accessing the code and disabling images and even resizing your browser size. It might be a good idea to try a screen reader, and not to mention an Web accessibility evaluation tool like <a href="http://www.atutor.ca/achecker/">AChecker</a>. These will enhance your understanding of the sites limitations and successes.</p>
<p>Another important part of evaluating a site is to get people with disabilities involved in the process. Some may have insights that other users will not.</p>
<p>For a complete procedure of website evaluation you have to go to the <a href="http://www.w3.org/WAI/eval/Overview.html">W3C – Web Accessibility Initiative page</a>.</p>
<p>Although a little outdated, the WAI also provides a comprehensive <a href="http://www.w3.org/TR/WCAG10/full-checklist.html">checklist of accessibility guidelines</a> (WCAG 1.0) and an useful template for the final accessibility report. They really thought of everything!</p>
]]></content:encoded>
			<wfw:commentRss>http://thinkingaccessible.com/evaluating-a-website-for-accessibility/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Did you know that…</title>
		<link>http://thinkingaccessible.com/did-you-know-that%e2%80%a6/</link>
		<comments>http://thinkingaccessible.com/did-you-know-that%e2%80%a6/#comments</comments>
		<pubDate>Tue, 09 Jun 2009 12:02:27 +0000</pubDate>
		<dc:creator>Rocío</dc:creator>
				<category><![CDATA[Web Accessibility]]></category>
		<category><![CDATA[Canada]]></category>
		<category><![CDATA[disabilities]]></category>
		<category><![CDATA[impairments]]></category>

		<guid isPermaLink="false">http://thinkingaccessible.com/?p=130</guid>
		<description><![CDATA[Did you know that according to Statistics Canada in 2006 there was 1,289,420 Canadians with a hearing impairment, 835,960 Canadians with a seeing impairment, 2,856,820 Canadians with an agility impairment, and 752,110 Canadians with a learning impairment. In every case, around 70% of these Canadians said that they had used the Internet in the past [...]]]></description>
			<content:encoded><![CDATA[<p>Did you know that according to Statistics Canada in 2006 there was 1,289,420 Canadians with a hearing impairment, 835,960 Canadians with a seeing impairment, 2,856,820 Canadians with an agility impairment, and 752,110 Canadians with a learning impairment. In every case, around 70% of these Canadians said that they had used the Internet in the past year. Let me crunch the numbers.  That’s 5,734,310 Canadians with the above mentioned impairments of 31,612,897, the total population recorded that year. So…there’s roughly about 13% of Canadians, with these impairments, that use the Internet.  That’s a lot of people if you ask me!</p>
<p>Ok, nobody likes having numbers thrown at them, but I hope that at least it impresses on you how important it is to consider people with impairments or disabilities as active members of our society and as such they should to be able to access with ease all the information everyone else can access.</p>
<p>You can have a look at the <a title="The 2006 Participation and Activity Limitation Survey: Disability in Canada " href="http://www.statcan.gc.ca/bsolc/olc-cel/olc-cel?catno=89-628-XWE&amp;lang=eng">complete survey at the Statistics Canada website</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://thinkingaccessible.com/did-you-know-that%e2%80%a6/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Another Firefox add-on</title>
		<link>http://thinkingaccessible.com/another-firefox-add-on/</link>
		<comments>http://thinkingaccessible.com/another-firefox-add-on/#comments</comments>
		<pubDate>Tue, 02 Jun 2009 15:55:09 +0000</pubDate>
		<dc:creator>Rocío</dc:creator>
				<category><![CDATA[Reviews]]></category>
		<category><![CDATA[Web Accessibility]]></category>
		<category><![CDATA[assistive technologies]]></category>
		<category><![CDATA[browsers]]></category>
		<category><![CDATA[Firefox]]></category>

		<guid isPermaLink="false">http://thinkingaccessible.com/?p=125</guid>
		<description><![CDATA[Don’t you just love Firefox add-ons. I do! Especially because they make my life easier. As a developer it is important to have a feel for what the user is getting out of your site. I found a good way to use a screen reader on any operating system (OS) without paying a dime. I [...]]]></description>
			<content:encoded><![CDATA[<p>Don’t you just love Firefox add-ons. I do! Especially because they make my life easier.</p>
<p>As a developer it is important to have a feel for what the user is getting out of your site. I found a good way to use a screen reader on any operating system (OS) without paying a dime. I am using <a title="Fire Vox Plugin" href="http://firevox.clcworld.net/">Fire Vox</a>. It utilizes the integrated screen reader application of any OS (Windows, MAC and Linux) and functions on your Firefox as an add-on. I tested it on a Windows XP and it worked pretty well. I got some choppiness in the sound but this is probably due to my old hardware. The only downfall for me is that I cannot easily turn it off. I would have liked to have this feature in the Fire Voxes options, but instead I have to go to the add-ons extensions list and completely disable it. Oh well, I’ll live</p>
]]></content:encoded>
			<wfw:commentRss>http://thinkingaccessible.com/another-firefox-add-on/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

