Page 1 of 2 12 LastLast
Results 1 to 10 of 11
  1. #1
    Join Date
    Nov 2007
    Location
    Slough
    Posts
    233
    Tokens
    0

    Default Background chooser help!

    Heya,
    I was wondering if anyone knows the php code and script for a background change plz thanks
    + rep btw
    Heya im Dj Matt on HxL Please to meet ya mwahhh




  2. #2
    Join Date
    Dec 2006
    Posts
    3,970
    Tokens
    0

    Latest Awards:

    Default

    Lets set the stage on fire, and hollywood will be jealous.

  3. #3
    Join Date
    Nov 2007
    Location
    Slough
    Posts
    233
    Tokens
    0

    Default

    cheers anyone else i need like a image background one not colors
    Heya im Dj Matt on HxL Please to meet ya mwahhh




  4. #4
    Join Date
    Oct 2006
    Posts
    2,918
    Tokens
    946
    Habbo
    Verrou

    Latest Awards:

    Default

    There's this thing, that was made for situations like this, uhm what's it called...oh yeah GOOGLE.
    Quote Originally Posted by Special-1k View Post
    How do you uninstall an internet? I want to uninstall my Google Chrome and
    get firefox but I never really got rid of an internet my dad usually did it for me.
    If you know how post below so I can do this.

  5. #5
    Join Date
    Oct 2006
    Posts
    2,918
    Tokens
    946
    Habbo
    Verrou

    Latest Awards:

    Default

    Code:
    <html>
    <head>
    <title>BG Changer</title>
    <STYLE type="text/css">
    img{
    	border-color: black;
    	border-width:1px;
          }
    </style>
    </head>
    
    <body background="green.png">
    <script language="JavaScript">
    <!--
    
    // Copyright 2001 by www.CodeBelly.com
    // Please do *not* remove this notice.
    
    var backImage = new Array(); // don't change this
    
    // Enter the image filenames you wish to use.
    // Follow the pattern to use more images.  The
    // number in the brackets [] is the number you
    // will use in the function call to pick each
    // image.
    
    // Note how backImage[3] = "" -- which would
    // set the page to *no* background image.
    
    backImage[0] = "blue.png";
    backImage[1] = "yellow.png";
    backImage[2] = "green.png";
    backImage[3] = "";
    
    // Do not edit below this line.
    //-----------------------------
    
    function changeBGImage(whichImage){
    if (document.body){
    document.body.background = backImage[whichImage];
    }
    }
    
    //-->
    </script>
    <a href="javascript:changeBGImage(0)"><img src="blue_select.PNG" border="0" alt="Blue"></a>
    <br>
    <a href="javascript:changeBGImage(1)"><img src="yellow_select.PNG" border="0" alt="Blue"></a>
    <br>
    <a href="javascript:changeBGImage(2)"><img src="green_select.PNG" border="0" alt="Blue"></a>
    </body>
    </html>
    That's a working one off CodeBelly, (Hint: I used Google). See the result: http://users.decrypterlive.com/~andre/bg/index.htm
    Quote Originally Posted by Special-1k View Post
    How do you uninstall an internet? I want to uninstall my Google Chrome and
    get firefox but I never really got rid of an internet my dad usually did it for me.
    If you know how post below so I can do this.

  6. #6
    Join Date
    May 2007
    Posts
    10,481
    Tokens
    3,140

    Latest Awards:

    Default

    thnx for posting I was looking for this +rep
    Chippiewill.


  7. #7
    Join Date
    May 2006
    Posts
    1,797
    Tokens
    0

    Latest Awards:

    Default

    Woah. didnt know the javascript to change background was that simple :S
    Coming and going...
    Highers are getting the better of me

  8. #8
    Join Date
    Oct 2007
    Location
    Luton, England
    Posts
    1,548
    Tokens
    388
    Habbo
    DeejayMachoo

    Latest Awards:

    Default

    Quote Originally Posted by MrCraig View Post
    Woah. didnt know the javascript to change background was that simple :S
    Much easier than i though lol


  9. #9
    Join Date
    Jan 2008
    Posts
    33
    Tokens
    0

    Default

    Quote Originally Posted by Verrou View Post
    Code:
    <html>
    <head>
    <title>BG Changer</title>
    <STYLE type="text/css">
    img{
        border-color: black;
        border-width:1px;
          }
    </style>
    </head>
    
    <body background="green.png">
    <script language="JavaScript">
    <!--
    
    // Copyright 2001 by www.CodeBelly.com
    // Please do *not* remove this notice.
    
    var backImage = new Array(); // don't change this
    
    // Enter the image filenames you wish to use.
    // Follow the pattern to use more images.  The
    // number in the brackets [] is the number you
    // will use in the function call to pick each
    // image.
    
    // Note how backImage[3] = "" -- which would
    // set the page to *no* background image.
    
    backImage[0] = "blue.png";
    backImage[1] = "yellow.png";
    backImage[2] = "green.png";
    backImage[3] = "";
    
    // Do not edit below this line.
    //-----------------------------
    
    function changeBGImage(whichImage){
    if (document.body){
    document.body.background = backImage[whichImage];
    }
    }
    
    //-->
    </script>
    <a href="javascript:changeBGImage(0)"><img src="blue_select.PNG" border="0" alt="Blue"></a>
    <br>
    <a href="javascript:changeBGImage(1)"><img src="yellow_select.PNG" border="0" alt="Blue"></a>
    <br>
    <a href="javascript:changeBGImage(2)"><img src="green_select.PNG" border="0" alt="Blue"></a>
    </body>
    </html>
    That's a working one off CodeBelly, (Hint: I used Google). See the result: http://users.decrypterlive.com/~andre/bg/index.htm
    Wow...
    Woaaaaaaaaaaah I've been searching for this and trying to make one myself for ages and that is SO SIMPLE.
    Thanks so much, I would rep but hehe I just joined.

  10. #10
    Join Date
    Nov 2007
    Location
    Slough
    Posts
    233
    Tokens
    0

    Default

    Quote Originally Posted by Verrou View Post
    Code:
    <html>
    <head>
    <title>BG Changer</title>
    <STYLE type="text/css">
    img{
        border-color: black;
        border-width:1px;
          }
    </style>
    </head>
    
    <body background="green.png">
    <script language="JavaScript">
    <!--
    
    // Copyright 2001 by www.CodeBelly.com
    // Please do *not* remove this notice.
    
    var backImage = new Array(); // don't change this
    
    // Enter the image filenames you wish to use.
    // Follow the pattern to use more images.  The
    // number in the brackets [] is the number you
    // will use in the function call to pick each
    // image.
    
    // Note how backImage[3] = "" -- which would
    // set the page to *no* background image.
    
    backImage[0] = "blue.png";
    backImage[1] = "yellow.png";
    backImage[2] = "green.png";
    backImage[3] = "";
    
    // Do not edit below this line.
    //-----------------------------
    
    function changeBGImage(whichImage){
    if (document.body){
    document.body.background = backImage[whichImage];
    }
    }
    
    //-->
    </script>
    <a href="javascript:changeBGImage(0)"><img src="blue_select.PNG" border="0" alt="Blue"></a>
    <br>
    <a href="javascript:changeBGImage(1)"><img src="yellow_select.PNG" border="0" alt="Blue"></a>
    <br>
    <a href="javascript:changeBGImage(2)"><img src="green_select.PNG" border="0" alt="Blue"></a>
    </body>
    </html>
    That's a working one off CodeBelly, (Hint: I used Google). See the result: http://users.decrypterlive.com/~andre/bg/index.htm
    Lol thanksand i found one before hand but forgot to say thanks anyway im sure people would like that i have the same code i found on google to
    Heya im Dj Matt on HxL Please to meet ya mwahhh




Page 1 of 2 12 LastLast

Posting Permissions

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