Results 1 to 3 of 3

Thread: background color changer and text resizer

  1. #1
    Join Date
    Jul 2007
    Posts
    12
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Question background color changer and text resizer

    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.

  2. #2
    Join Date
    Jun 2005
    Location
    英国
    Posts
    11,876
    Thanks
    1
    Thanked 180 Times in 172 Posts
    Blog Entries
    2

    Default

    Code:
    <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).
    Twey | I understand English | 日本語が分かります | mi jimpe fi le jbobau | mi esperanton komprenas | je comprends français | entiendo español | tôi ít hiểu tiếng Việt | ich verstehe ein bisschen Deutsch | beware XHTML | common coding mistakes | tutorials | various stuff | argh PHP!

  3. #3
    Join Date
    Mar 2005
    Location
    SE PA USA
    Posts
    30,495
    Thanks
    82
    Thanked 3,449 Times in 3,410 Posts
    Blog Entries
    12

    Default

    There is also:

    http://www.dynamicdrive.com/dynamici...etswitcher.htm

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

    Show Additional Thanks: International Rescue Committee - Donate or: The Ocean Conservancy - Donate or: PayPal - Donate

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •