Connecting Tech Pros Worldwide Forums | Help | Site Map

Enlarge text with a javascript link..how??

chris
Guest
 
Posts: n/a
#1: Jul 20 '05
Hi,

I need to add a text or image link which when click on will enlarge
the text on a web page to ither large or largest.

How can I do this, if its possible.

Chris

Lasse Reichstein Nielsen
Guest
 
Posts: n/a
#2: Jul 20 '05

re: Enlarge text with a javascript link..how??


lootads@yahoo.co.uk (chris) writes:
[color=blue]
> I need to add a text or image link which when click on will enlarge
> the text on a web page to ither large or largest.[/color]

<input type="button" onclick="document.body.style.fontSize = '120%'"
value="Larger">
<input type="button" onclick="document.body.style.fontSize = '144%'"
value="Largest">

Remeber to only use relative sizing on the font sizes you set
yourself, then a larger font size for the body element will be
inherited for the entire page.

/L
--
Lasse Reichstein Nielsen - lrn@hotpop.com
Art D'HTML: <URL:http://www.infimum.dk/HTML/randomArtSplit.html>
'Faith without judgement merely degrades the spirit divine.'
Closed Thread