I can think a couple of things that I do to keep my websites accesibles:
-Don't use flash, and if I do, I don't use that tiny pixel fonts. I don't know why flash designers think they are soo cool, but it's not a good idea put a text that a percent of your visitors can't see.
-Use colors that contrast for text and background. For professional websites I stick to black text in white background. I have visited sites that use brown text in black background, I have to highlight it to read it.
-I use css for styles and use em for font sizes, not pixels or units. This allow the visitor to set the font size in their browsers (most of them) they can set the font to largest. I always test that this won't breake my layout.
-Again using css I always specify the background colors (even if I have a image as background). Some people may have images disabled and a custom background color in their browsers, if for example I have white text in a dark image background (and forgot to set a background color) and my visitor has images disabled and a custom white background he/she won't be able to read my texts.
Reply