Susie Gardner-Brown wrote:
> div#content li a span {
> display: none;
> }
Instead of using display:none, maybe try this. It's a lot more accessible.
div#content li a span {
position : absolute;
top : -9000px;
left : -9000px;
}
Also, be sure to add focus and active to ensure all users can bring it back
from the top-left. Only mouse users can hover over an element. Example:
div#content li a:hover span, div#content li a:focus span, div#content li
a:active span {
/* your CSS properties for above */
}
Then, if offering visited states, be sure to apply the rules above to them
as well.
div#content li a:visited span {
/* your CSS properties for above */
}
div#content li a:visited:hover span, div#content li a:visited:focus span,
div#content li a:visited:active span {
/* your CSS properties for above */
}
Maybe something in this experiment will help (it would be adaptable):
http://mikecherim.com/experiments/css_map_pop.php
Hope this helps.
Sincerely,
Mike Cherim
http://green-beast.com/
******************************************************
The discussion list for http://webstandardsgroup.org/
See http://webstandardsgroup.org/mail/guidelines.cfm
for some hints on posting to the list & getting help
******************************************************