WebAIM - Web Accessibility In Mind

E-mail List Archives

Re: Re Increasing font size

for

From: reply-to:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:references;
Date: Feb 26, 2005 7:27AM


> I want to use a button on each page to enlarge the font, and have the
> ability to do away with the left hand navigation bar - at least
> temporarily - but haven't yet learned how to do so.> Any suggestions for online tutorials on this?

you could try a stylesheet swicther, alistapart have done some great
examples, the one below is a javascript solution:

http://www.alistapart.com/articles/alternate/

>and have the ability to do away with the left hand navigation bar

in your stylesheet you can use display:none:

#nav {
display:none;
}

hope that helps

ben