<?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>Mercurythread &#187; accessibility</title>
	<atom:link href="http://www.mercurythread.co.uk/blog/tag/accessibility/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.mercurythread.co.uk</link>
	<description>The personal website of Michael Briggs : Professional SEO and Internet Geek</description>
	<lastBuildDate>Tue, 08 Nov 2011 22:31:46 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>Text Contrast &#8211; Website Testing Series</title>
		<link>http://www.mercurythread.co.uk/blog/text-contrast-website-testing-series/2009/03/</link>
		<comments>http://www.mercurythread.co.uk/blog/text-contrast-website-testing-series/2009/03/#comments</comments>
		<pubDate>Wed, 25 Mar 2009 12:00:46 +0000</pubDate>
		<dc:creator>Michael</dc:creator>
				<category><![CDATA[Usability]]></category>
		<category><![CDATA[Website Design]]></category>
		<category><![CDATA[accessibility]]></category>
		<category><![CDATA[website testing]]></category>

		<guid isPermaLink="false">http://www.mercurythread.co.uk/blog/?p=157</guid>
		<description><![CDATA[It&#8217;s such a simple thing but designers are not per se website designers &#8211; in the same way that SEO people are not website designers. I can&#8217;t use photoshop to save myself but its important that all designers understand the basics of a webpage and having a good contrast between text and background is hugely [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.pagethinker.com/images/color-wheel-hue-names.gif"><img src="http://www.pagethinker.com/images/color-wheel-hue-names.gif" alt="" width="300" height="299" /></a>It&#8217;s such a simple thing but designers are not per se website designers &#8211; in the same way that SEO people are not website designers. I can&#8217;t use photoshop to save myself but its important that all designers understand the basics of a webpage and having a good contrast between text and background is hugely important. </p>
<h2>Why is the contrast between text and background important?</h2>
<ol>
<li>Makes text easier to read &#8211; remember visitors scan content</li>
<li>Your text sells your products to visitors</li>
<li>Helps with accessibility</li>
<li>SEO guys won&#8217;t complain about possibility of hidden text</li>
</ol>
<p><span id="more-157"></span></p>
<h2>Why do designers design without contrasting colours?</h2>
<ol>
<li>They have nice, high resolution monitors and assume everyone gets their experience</li>
<li>They don&#8217;t design for users (they make pretty pictures)</li>
<li>Lose track of core goal of websites (get visitors to do something) and want to be clever</li>
</ol>
<h2>How To Test for Colour Contrast?</h2>
<p>Its pretty easy to go and test the colour contrast you can use online tools or <a href="http://juicystudio.com/article/colour-contrast-analyser-firefox-extension.php" target="_blank">install a toolbar</a> (useful for designers me thinks) &#8211; if you want to get really geeky you can test with the<a href="http://www.w3.org/TR/2005/WD-WCAG20-20051123/intro.html#conformance" target="_blank"> W3 guidelines</a>. I generally use the tool provided by <a href="http://www.snook.ca/technical/colour_contrast/colour.html" target="_blank">http://www.snook.ca/technical/colour_contrast/colour.html</a> there are more listed at <a href="http://www.456bereastreet.com/archive/200709/10_colour_contrast_checking_tools_to_improve_the_accessibility_of_your_design/" target="_blank">Berea Street</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mercurythread.co.uk/blog/text-contrast-website-testing-series/2009/03/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Checking Alt attributes &#8211; Website Testing Series</title>
		<link>http://www.mercurythread.co.uk/blog/checking-alt-attributes-website-testing-series/2009/03/</link>
		<comments>http://www.mercurythread.co.uk/blog/checking-alt-attributes-website-testing-series/2009/03/#comments</comments>
		<pubDate>Tue, 17 Mar 2009 17:10:26 +0000</pubDate>
		<dc:creator>Michael</dc:creator>
				<category><![CDATA[Search Engine Optimisation]]></category>
		<category><![CDATA[Usability]]></category>
		<category><![CDATA[accessibility]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[seo]]></category>
		<category><![CDATA[Website Design]]></category>

		<guid isPermaLink="false">http://www.mercurythread.co.uk/blog/?p=150</guid>
		<description><![CDATA[One of the cool things in CSS is the ability to add styles to elements with certain attribute values &#8211; so you can style based upon the context of an HTML element. During website testing a useful thing to do is to test and make sure that images, where appropriate, have an alt attribute. Having [...]]]></description>
			<content:encoded><![CDATA[<p>One of the cool things in CSS is the ability to add styles to elements with certain attribute values &#8211; so you can style based upon the context of an HTML element. During website testing a useful thing to do is to test and make sure that images, where appropriate, have an alt attribute.<br />
Having a good alt attribute is not going to change your SEO performance on its own &#8211; it will going help make your website more accessible and user friendly. Good alt attributes are part of SEO housekeeping &#8211; should be done but no one really likes doing it. So before you launch a site check your pages with the following style in the sheet to place a red border round all images that have no alt attribute specified:</p>
<blockquote><p>img[alt=””] {border:10px solid red;}</p></blockquote>
<p>See how easy that was. One quick check and you can find the problems almost instantly &#8211; on a test site it only takes a short time to check your pages.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mercurythread.co.uk/blog/checking-alt-attributes-website-testing-series/2009/03/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
	</channel>
</rss>

