Log in

View Full Version : background color changer and text resizer



silverz
08-19-2007, 07:35 AM
Hello,

I was wondering if there a readily available code out there that does:1) allow users to change the background color of a web page and 2) allow to resize the text size. I am looking for something like what is found on the www.msn.com site on the top right(orange button, called 'page options').

Regards.

Twey
08-19-2007, 08:16 AM
<form action="" onsubmit="document.body.style.backgroundColor = this.elements.colour.value;">
<div>
<label>Colour:
<input type="text" name="colour" value="white">
</label>
<input type="submit" value="Change">
</div>
</form>As for text resizing, that's built into every modern browser (even IE, to some extent).

jscheuer1
08-19-2007, 01:31 PM
There is also:

http://www.dynamicdrive.com/dynamicindex9/stylesheetswitcher.htm

and, I am sure, many other such sorts of things about on the web.