you will also need to have a link at the top of your site to skip to content.
i.e.
- Code: Select all
css
.accessibility{ display:none; overflow:hidden;}
html
<html>
<head>
<body><div class="accessibility"><a href="#content" title="skip to page content" accesskey="a">link to content</div>
<div class="header>other code for header etc</div>
<div class="accessibility"><a name="content" title="page content">main content</div>
<div class="content">other code for content etc</div>
and other code
notice how it it the first item that the screen reader see's.
You will need to read the standard to get the correct wording for the title tag for it to comply, but that is the gist of it.
Stew