up vote 2 down vote favorite
share [g+] share [fb]

Possible Duplicate:
Allow users to change font size in a webpage

Hello,

I have some webpages. I would like the user to click an image and have the font-sizes of all of the content on the page increase. Is this possible? If so, how?

I know that the browsers have options inside of them. Basically, I want a way to do that in the page itself.

Thank you.

link|improve this question

72% accept rate
1  
feedback

closed as exact duplicate by Josh Stodola, marc_s, bigmattyh, Shog9, Adam Bellaire Sep 8 '09 at 13:41

This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ.

3 Answers

Three things to achieve this:

Specify the overall font-size in the <body> tag. For example:

body { font-size: 100%; }

Don't use pixels to specify font-size anywhere else in the document.

p.somePara { font-size: 120%; }
p.anotherPara { font-size: 1.4em; }

Attach an event handler to this image, to adjust the font size accordingly. Using jQuery, for example:

$("#largerTextImage").click(function() {
  $("body").css("fontSize", "120%");
});

Done.

link|improve this answer
Edited to fix a itty bitty syntax error :) – Josh Stodola Sep 6 '09 at 20:06
feedback

If you increase the font size of a top-level element like <body>, then that [changed] size will be inherited by its child elements (assuming that other CSS rules for those element didn't override that size with an absolute value, which would also have messed up the user's changing font size in their browser).

This article (for example) says that it describes how to change CSS values programatically.

link|improve this answer
feedback

I would say that you could switch css.

Put all your font-sizes in a separated CSS file. Then duplicate this file and change the font sizes. Then use a piece of js script to swich css files.

There are a lot of tutorials up there that explain all about it. Here's one.

link|improve this answer
This is a very crude method that I would never use. – Josh Leitzel Sep 6 '09 at 20:06
Why that? This is pretty interesting since you can specify different font sizes for all the elements to keep control over what your website looks like. – marcgg Sep 6 '09 at 20:10
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.