WebProWorld Part of WebProNews.com
Page One Link To Us Edit Profile Private Messages Archives FAQ RSS Feeds  
 

Go Back   WebProWorld > Site Design > Graphics & Design Discussion Forum > Accessibility and Usability Forum
Subscribe to the Newsletter FREE!


Register FAQ Members List Calendar Arcade Chatbox Mark Forums Read

Accessibility and Usability Forum Discuss topics related to website accessibility and usability. Subjects include; testing techniques, tutorials, guidelines and legal issues.

Reply
 
LinkBack Thread Tools Display Modes
  #1 (permalink)  
Old 10-22-2003, 11:26 PM
Webnauts's Avatar
WebProWorld 1,000+ Club
 

Join Date: Aug 2003
Location: Worldwide
Posts: 7,399
Webnauts RepRank 3Webnauts RepRank 3
Default Building Accessibility Quotes/Tips List

Dear Accessibility Professionals, Advocates and Friends!

I would like to gather "Accessibility Tips/Quotes" to provide them here, on my web site and my forum as "Quote of the day" or "Quote of the week".

Therefore I would appreciate your tips/quotes!

That can be useful for all of us, or?

Thanks in advance for your kind support!
Reply With Quote
  #2 (permalink)  
Old 12-09-2003, 07:19 AM
Webnauts's Avatar
WebProWorld 1,000+ Club
 

Join Date: Aug 2003
Location: Worldwide
Posts: 7,399
Webnauts RepRank 3Webnauts RepRank 3
Default Care With Font Size

Care With Font Size
Forget <font>, use CSS: http://www.w3.org/2003/07/30-font-size
Reply With Quote
  #3 (permalink)  
Old 12-09-2003, 07:21 AM
Webnauts's Avatar
WebProWorld 1,000+ Club
 

Join Date: Aug 2003
Location: Worldwide
Posts: 7,399
Webnauts RepRank 3Webnauts RepRank 3
Default Use the alt attribute

Use the alt attribute
What are alt attributes useful for and what should I put in my alt attribute? http://www.w3.org/QA/Tips/altAttribute
Reply With Quote
  #4 (permalink)  
Old 12-09-2003, 07:28 AM
Webnauts's Avatar
WebProWorld 1,000+ Club
 

Join Date: Aug 2003
Location: Worldwide
Posts: 7,399
Webnauts RepRank 3Webnauts RepRank 3
Default Don't use "click here" as link text

Don't use "click here" as link text: http://www.w3.org/QA/Tips/noClickHere
Reply With Quote
  #5 (permalink)  
Old 12-09-2003, 07:41 AM
Webnauts's Avatar
WebProWorld 1,000+ Club
 

Join Date: Aug 2003
Location: Worldwide
Posts: 7,399
Webnauts RepRank 3Webnauts RepRank 3
Default Use Tabindex

Use Tabindex: http://www.w3.org/WAI/UA/TS/html401/...-TABINDEX.html
Reply With Quote
  #6 (permalink)  
Old 07-10-2004, 08:39 PM
Webnauts's Avatar
WebProWorld 1,000+ Club
 

Join Date: Aug 2003
Location: Worldwide
Posts: 7,399
Webnauts RepRank 3Webnauts RepRank 3
Default Accessibility statement

Creating an accessibility statement: http://diveintoaccessibility.org/day...statement.html

Writing and posting the accessibility policy: http://www.joeclark.org/book/sashay/...4.html#h2-1085
Reply With Quote
  #7 (permalink)  
Old 07-10-2004, 08:41 PM
Webnauts's Avatar
WebProWorld 1,000+ Club
 

Join Date: Aug 2003
Location: Worldwide
Posts: 7,399
Webnauts RepRank 3Webnauts RepRank 3
Default Use acronyms and abbreviations

W3C Note - Acronyms and abbreviations http://www.w3.org/TR/WCAG10-HTML-TECHS/#text-abbr

Why you should use acronyms and abbreviations http://www.accessify.com/tools-and-w...reviations.asp

The difference between acronyms and abbreviations http://www.accessify.com/archives/20....asp#200186538

Abbreviations, Acronyms, and Shortened Words http://brainstormsandraves.com/archi...t_64_acronyms/

Explaining abbreviations, acronyms and symbols on Web pages http://www.cs.tut.fi/%7Ejkorpela/html/abbr.html
Reply With Quote
  #8 (permalink)  
Old 07-10-2004, 08:43 PM
Webnauts's Avatar
WebProWorld 1,000+ Club
 

Join Date: Aug 2003
Location: Worldwide
Posts: 7,399
Webnauts RepRank 3Webnauts RepRank 3
Default Don't use Drop-Down-Menus

DROP DOWN MENUS?
Some sites using drop-down menu, would reload the page if the for example line (-----------) is selected, which can disorientate or confuse the user.

Another issue is if the user is navigating with a keyboard, he type's the first letter, he is brought to the first word in the list that begin's with that letter. When there are more items with the same first letter, then the user has a problem. If he type's a second letter in the word he seek's, he goes to the first word that begin's with that letter.

That is why I am am convinced, that selection lists are much more accessible and usable!

Is it only my point of view?

Further reading:
Drop-Down Menus - Use Sparingly: http://www.useit.com/alertbox/20001112.html
Users have difficulties with dropdown, fly out and rollover menus: http://www.uie.com/Articles/what_they_want_article.htm
Reply With Quote
  #9 (permalink)  
Old 07-10-2004, 08:45 PM
Webnauts's Avatar
WebProWorld 1,000+ Club
 

Join Date: Aug 2003
Location: Worldwide
Posts: 7,399
Webnauts RepRank 3Webnauts RepRank 3
Default Use Skip to Content or Navigation Link

Use a skip over navigation link

Enhance your web site accessibility providing 'Skip to Content or Navigation' links.
And from the usability for accessibility point of view, it is recommended to make such links visible.

Why? Frank Gayne at infocentre.frontend.com explain's:

"You must consider people with other types of impairments in this context also. Ask whether or not skip links would be useful for people who cannot easily use a mouse? Many of these people depend on tabbing in order to make progress through an interface and might appreciate a skip links feature to lighten the amount of work they have to do. If there is no visible focus to let these people know they have hit a link then this useful feature is lost to them."

How can you build such links?

Immediately after the logo of your web site insert the skip link:

Skip over navigation


If this is done do one of the following, depending on the MarkUp Laguage you are using:

1. If you're using any variant of HTML 4, add this just before your main content:

<a name="content"></a>


2. If you are using any variant of XHTML 1.0, add this just before your main content:

<a name="content" id="content"></a>


3. If you are using XHTML 1.1, add this just before your main content:

<a id="startcontent"></a>

By the way, if it does not fit in your design, you could do them also invisible as described below.

1. Create a transparent graphic 1X1 pixels, and name it "spacer.gif".

2. At the top of you page add this: [img]spacer.gif[/img]

3. At the begining of your content add this: <a name="content" id="content"></a>


Another fact is, that many web sites have the "Skip Navigation" or "Skip to content" links, before the logo of the page.

But is that usable?

A logo is a precursor of a web page. It lets the user know what website he/she is on. You may have internal/external links on your page. If a "Screen Reader" user clicks an internal link, your logo's "alt tag" tells the user that he/she have not yet left your website.

If the skip navigation link is before this logo, then the user does not know immediately which website he/she is on.

For further reading:

Skip repetitive navigation links: http://oc.nci.nih.gov/web508/tip2.html
Skipping over navigation links: http://diveintoaccessibility.org/day...ion_links.html
Skip to Main Content Link: http://www.washington.edu/accessit/AU/tutorial/ins.html
Skip Navigation Links: http://www.cio-dpi.gc.ca/clf-upe/6/skip_e.asp

By John Britsios, Web Accessibility and Usability Consultant
Webnauts Net - http://www.webnauts.net
Reply With Quote
  #10 (permalink)  
Old 07-12-2004, 08:28 AM
WebProWorld Pro
 

Join Date: Apr 2004
Location: Finland
Posts: 147
Niko Holopainen RepRank 0
Default

Uhh, I think the "guidelines" as to what to do in the various instances was left out.

I'm adding the skip navigation link, that isn't normally visible thus the best manner of doing this would be appreciated.

Entering a visible "skip navigation" link would seem very ungainly for a page that's about 20kb in size but I will do so if it's deemed appropriate (it will break the visual layout).
__________________
Lomaosake.fi, Duelta.com, Duelta.net
Reply With Quote
Reply

  WebProWorld > Site Design > Graphics & Design Discussion Forum > Accessibility and Usability Forum
Tags: , , ,



Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Search Engine Optimization by vBSEO 3.2.0