Web Accessibility: text resize


 
Thread Tools Search this Thread
Top Forums Web Development Web Accessibility: text resize
# 1  
Old 02-19-2010
Web Accessibility: text resize

An in house development team is building a website and we were wondering what from a Web Accessibility standpoint is a best practice when it comes to resizing text. Most browsers have a menu item to resize text, but not all users may know it is there or may have difficulty reaching it. Some websites resort to offering resizing text via screen buttons. These buttons would need to be programmed.

There are pros and cons to each approach, but is there a best practice for text resizing?
# 2  
Old 02-19-2010
The best practice is the one that works best with your target group.

See the Web Accessibility Initiative and Web Content Accessibility Guidelines on hints on what that practice might be. Based on that serve the site or an emulation to those who might need it, and see how well it's handled.
# 3  
Old 02-21-2010
Thank you for your answer. I always thought that websites should be available and accessible to all, regardless of what the site owner thinks his target group is. ONe of your links (Web Accessibility Initiative (WAI) - home page) actually does have a section text resizing and has only a very general guideline: "Using server-side scripts to resize images of text."
# 4  
Old 02-21-2010
I agree with you that sites should be accessible to all. What I mean with target group is not a group of people with a similar impairing condition, but similar interests. Eg. a group of software engineers will probably search for the "re-size text" option differently than a group of linguists. And with seniors it should be as easy as possible to find it, and be non-obtrusive otherwise.

Mind tho, this is coming from someone who "designs" web-pages as black-on-white, default font & size, should be readable in lynx or w3m Smilie
# 5  
Old 02-25-2010
Ok, thanks for the pointers.
# 6  
Old 02-27-2010
Quote:
Originally Posted by pludi
Mind tho, this is coming from someone who "designs" web-pages as black-on-white, default font & size, should be readable in lynx or w3m Smilie

It makes sense to design web sites to use the viewer's default font and size. That's what they prefer; who are we to tell them otherwise?

That does not mean that a page need be dull and visually uninteresting. Mostly it means not specifying everything.
# 7  
Old 02-28-2010
Correct, and it makes for easier maintenance too.
Login or Register to Ask a Question

Previous Thread | Next Thread

6 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Copy text from web page and add to file

I need help to make a script for Ubuntu to OSCam that copy the text on this website that only contains "C: ip port randomUSERNAME password" and want to exclude the text "C:" and replace the rest with the old in my test.server file. (line 22) device = ip,port (line 23) user =... (6 Replies)
Discussion started by: baxarn
6 Replies

2. Shell Programming and Scripting

Web page with picture, text, php function

Hello. I'm trying to create a web page which the presentation is as follows: 1 °) at the top of page an image 2 °) below the text 3 °) to complete a php function that returns information. I tried different things but none work. Script 1: <!DOCTYPE html> <html> <head> <style> div { ... (5 Replies)
Discussion started by: jcdole
5 Replies

3. Shell Programming and Scripting

Perl text from web

perl -MLWP::Simple -le '$s=shift;$c=get("http://genetics.emory.edu/egl/tests/view.php?testid=4125/$s/");$c=~/meta content=(.*?)name=\"Genes\"/msg; print length($1),"\t$1"' "Test Description" >output.txt I am having trouble with this code: Can it be modified for the desired output? I attached... (3 Replies)
Discussion started by: cmccabe
3 Replies

4. Shell Programming and Scripting

Grep text matching problem with script which checks if web page contains text.

I wrote a Bash script which checks to see if a text string exists on a web page and then sends me an email if it does (or does not e.g. "Out of stock"). I run it from my crontab, it's quite handy from time to time and I've been using it for a few years now. The script uses wget to download an... (6 Replies)
Discussion started by: gencon
6 Replies

5. Programming

Application with Accessibility for Blind People

I am about to start developing an application, which requires accessibility for blind people. It will be a front-end to google calendar for blind people. Can I do this in C#? Does .NET provide accessibility? I want to read the information from screen readers(e.g. JAWS), a software that uses voice... (0 Replies)
Discussion started by: romeo5577
0 Replies

6. UNIX for Dummies Questions & Answers

Possible to download web page's text to a file?

Hi, Say there is a web page that contains just text only - that is, even the source code is just the text itself, nothing more. An example would be "http://mynasadata.larc.nasa.gov/docs/ocean_percent.txt" Is there a UNIX command that would allow me to download this text and store it in a... (1 Reply)
Discussion started by: Breanne
1 Replies
Login or Register to Ask a Question