test

Advice needed describing/labling images to blind users

Page 1 of 1 [ 9 posts ] 

Bearsac-Debra
Toucan
Toucan

User avatar

Joined: 20 Nov 2005
Age:48
Posts: 273
Location: Borehamwood, Herts, UK

05 Oct 2008, 6:37 am

I want to be able to have worded descriptions linked to images on my website so blind users and those that surf with images turned off can get an idea of what the image is about.

I use Dreamweaver Ultra Dev. I could try naked HTML if informed of the correct code.

Can anyone advise please?

www.bearsac.com


_________________
It's just amazing how bears and people can be.
www.bearsac.com


LostInEmulation
Veteran
Veteran

User avatar

Joined: 10 Feb 2008
Age:32
Posts: 2,256
Location: Ireland, dreaming of Germany

05 Oct 2008, 6:43 am

I guess you can set an the ALT-Attribute even in Dreamweaver. ie: <img src="$filename" alt="$description">


_________________
I am not a native speaker. Please contact me if I made grammatical mistakes in the posting above.

Penguins cannot fly because what cannot fly cannot crash!


0_equals_true
Veteran
Veteran

User avatar

Joined: 5 Apr 2007
Age:33
Posts: 9,544
Location: London

05 Oct 2008, 1:40 pm

0_equals_true
Veteran
Veteran

User avatar

Joined: 5 Apr 2007
Age:33
Posts: 9,544
Location: London

05 Oct 2008, 1:45 pm

The best way to test your page for accessibility is to get the main text reading browsers used by visually impaired people try it out. Some annotations actually disrupt the flow of useful information.



0_equals_true
Veteran
Veteran

User avatar

Joined: 5 Apr 2007
Age:33
Posts: 9,544
Location: London

05 Oct 2008, 2:12 pm

Bearsac-Debra nice site, although you can make some improments. I would start by getting it passed validation. At the moment it doesn't have a Document Type so it can't really be validated. You are in that 'quirks mode' grey area which is never a good place.

http://validator.w3.org/check?verbose=1 ... Findex.htm

Just slowly work your way through, making corrections a couple at a time, and rechecking. Conformity doesn't mean accessibility far from it. But it can, for the simplest things, work as a sort of damage limitation from displaying completely differently in a particular browser.

I suggest using html (strict) rather then xhtml for you purposes because of problems with the standardisation of area maps between versions of xhtml. W3C are not perfect they do make mistakes and this is one area they cocked up, which caused some inconsistency between some browsers.

Now for your design, you are using area maps to navigate. So for accessibility within the area tag use the alt attribute. So the main image itself is decoration so you could use alt="" for the image and then put descriptions for the areas. If that makes sense.



Bearsac-Debra
Toucan
Toucan

User avatar

Joined: 20 Nov 2005
Age:48
Posts: 273
Location: Borehamwood, Herts, UK

06 Oct 2008, 4:20 am

Thanking people for their help. I have described some of the photos in diary 08 and meets celebrities page so far. I will look at websites and other suggestions as time permits.

Any other advice also welcome.

have a good day folks.

Debra


_________________
It's just amazing how bears and people can be.
www.bearsac.com


lau
Veteran
Veteran

User avatar

Joined: 17 Jun 2006
Age:66
Posts: 10,552
Location: Somerset UK

06 Oct 2008, 10:10 am

As others hae said, the correct way to make your page "say" what an image is, is with the "alt" attribute.

==============

I find the WebDeveloper extension in Firefox and SeaMonkey (and other Mozilla-baser browsers?) to be indispensable for checking websites.

It gives a huge range of ways to see exactly what's going on in a page.

The primary ones that would be of interest to you are in the "Tools" dropdown. There, you can easily send your page to the W3C validator, for (X)HTML, and also for CSS, plus others, including the accessibility checks at HiSoftware® Cynthia Says™.

===============

I also use the offline "tidy" program to clean up messy (X)HTML. (And to convert plain HTML to HTML+CSS or XHTML+CSS.)

I've not extensively used it, but KompoZer is a nice, free editor. It is started life as the editor I get, built in, in Seamonkey.

============

As mentioned earlier, by 0_equals_true, because you don't have a DOCTYPE, the validator complains of 25 errors and 4 warnings on your front page. As some of these are due to it guessing at "HTML 4.01 Transitional", then disliking some XHTML constructs that have found their way into a ".html" file, I tried forcing "XHTML 1.0 Transitional". However, it then gave 290 Errors and 4 warnings, so I guess that wasn't such a good idea!


_________________
"Striking up conversations with strangers is an autistic person's version of extreme sports." Kamran Nazeer


0_equals_true
Veteran
Veteran

User avatar

Joined: 5 Apr 2007
Age:33
Posts: 9,544
Location: London

06 Oct 2008, 12:00 pm

lau wrote:
As mentioned earlier, by 0_equals_true, because you don't have a DOCTYPE, the validator complains of 25 errors and 4 warnings on your front page. As some of these are due to it guessing at "HTML 4.01 Transitional", then disliking some XHTML constructs that have found their way into a ".html" file, I tried forcing "XHTML 1.0 Transitional". However, it then gave 290 Errors and 4 warnings, so I guess that wasn't such a good idea!

xhtml being xml (almost) is case sensitive. She has most of her tags in capitals.



0_equals_true
Veteran
Veteran

User avatar

Joined: 5 Apr 2007
Age:33
Posts: 9,544
Location: London

06 Oct 2008, 12:07 pm

Note: when an element supports an alt attribute and a title attribute (check standards). It is the alt that is used for accessibility. The title is used often as a tooltip, when the cursor is over that rendered element for a while. title is always optional alt should be supplied even if it is an empty string.