Change the Font Size to Help your Readers

Nice little trick posted by Brennan about proposing different font-sizes in your web application. Sure most browsers support font resizing, but it's usually on the whole page so that your CSS are screwed up.

Thanks for that (just a bit of CSS and Javascript) and useful too in a Text Only version.

var content = document.getElementById(’content’);
content.className=’large’;

Read more...

No Comments