Results 1 to 3 of 3

Thread: Random background image problem
      
   

  1. #1
    mars1985 is offline Private
    Join Date
    Aug 2005
    Posts
    2

    Post Random background image problem

    Hello! I just started using BlueVoda and I love it! I have been working on a personal web site for a couple of nights now and I was think how neat it would be to have a random image background every time someone came to my site. anyways I can't seem to get this script to work! I am not sure how it would anyway since the only way you can edit the background is in page proprieties.. its late and I have been working for hours so - tell me if you have any tips to help me figure this out...


    <script>
    /*Random Background Image-
    By JavaScript Kit (www.javascriptkit.com)
    More free JavaScripts here!
    */
    var backgr1="../images/bg1.jpg"
    var backgr2="../images/bg2.jpg"
    var backgr3="../images/bg3.jpg"
    var cur=Math.round(6*Math.random())
    if (cur<=1)
    backgr=bg1
    else if (cur<=4)
    backgr=bg2
    else
    backgr=bg3
    document.write('<body background="'+backgr+'"')
    </script>

  2. #2
    Pablo is offline Moderator
    Join Date
    May 2005
    Posts
    507

    Default

    This script can not work together with BlueVoda, it duplicates the BODY tag (already generated by BlueVoda) and so will generate incorrect HTML.
    Forum Moderator
    BlueVoda Specialist

  3. #3
    mars1985 is offline Private
    Join Date
    Aug 2005
    Posts
    2

    Exclamation

    Quote Originally Posted by Pablo
    This script can not work together with BlueVoda, it duplicates the BODY tag (already generated by BlueVoda) and so will generate incorrect HTML.
    I see - I guess I could edit the html before uploading...

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

     

Similar Threads

  1. Is it possible to jump from image to image in Gallery?
    By bcolaco in forum Adding Elements To Your Website
    Replies: 3
    Last Post: 11-21-2005, 11:31 PM
  2. Text Background
    By cajun_spice98 in forum BlueVoda - General Issues
    Replies: 0
    Last Post: 09-27-2005, 01:02 PM
  3. preview blue voda, page not adjusting
    By meau in forum General Support Issues
    Replies: 5
    Last Post: 07-26-2005, 06:30 AM
  4. Image enlargement window
    By allan in forum BlueVoda - General Issues
    Replies: 7
    Last Post: 07-02-2005, 01:57 PM
  5. No image on neo mail
    By allan in forum General Support Issues
    Replies: 3
    Last Post: 06-13-2005, 10:39 PM

Posting Permissions

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

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49