Results 1 to 5 of 5

Thread: Is this java or script or what??? How do I use it in BlueVoda??
      
   

  1. #1
    sisterearth is offline Sergeant
    Join Date
    Feb 2006
    Posts
    24

    Question Is this java or script or what??? How do I use it in BlueVoda??

    I'm trying to add the code below to my page, it is a self updating image link to a free e-card of the week from this URL : http://omplace.com/cgi-bin/search/om...gi?page_spirit

    I know so little about this I'm not sure what it is or how to insert it on my page with BLV. I tryed a few things but had no luck.

    This is from Dianne of sisterearthstore.com
    See code below.

    <!--CODE STARTS HERE-->

    <script type="text/javascript" language="JavaScript">
    if (navigator.appName == "Microsoft Internet Explorer" ||
    navigator.appName == "Mozilla") {
    document.write('<iframe src="http://www.omplace.com/spiritcardofweek.html" height="200" frameborder="0" scrolling="no"></iframe>');
    }
    else {
    if (navigator.appName == "Netscape") {document.write('<layer style="position: relative;" src="http://www.omplace.com/spiritcardofweek.html"></layer>');
    }
    }
    </script>

    <!--CODE ENDS HERE-->

  2. #2
    Watdaflip's Avatar
    Watdaflip is offline Major General
    Join Date
    Sep 2005
    Location
    Cincinnati, Ohio
    Posts
    2,119

    Default Re: Is this java or script or what??? How do I use it in BlueVoda??

    Just create a html box, insert that code inside of it, and place it where you want it to show up. Publish and verify that the position is correct, and make the correct changes to get it exactly where you want.

    Register/Login Script
    Do you use a Password Protected Directory? Need a way to allow users to make their own account, try my .htaccess Login Script

  3. #3
    sisterearth is offline Sergeant
    Join Date
    Feb 2006
    Posts
    24

    Default Re: Is this java or script or what??? How do I use it in BlueVoda??

    Thanks for the idea but I all ready did that & it did not work but I'll try it one more time just to be sure. I also pasted it into a scripts box and that did not work. Is there some thing else I can try?
    Dianne at Sisterearthstore.com

  4. #4
    Join Date
    Feb 2006
    Location
    Earth
    Posts
    8,721

    Default Re: Is this java or script or what??? How do I use it in BlueVoda??

    Hi, you could just place an iframe on your page & set at about 120w X 200h & place this http://www.omplace.com/spiritcardofweek.html properties url field. Should do the same thing. Set the target to _top.

  5. #5
    Mook25's Avatar
    Mook25 is offline Brigadier General
    Join Date
    Oct 2005
    Location
    UK
    Posts
    1,430

    Default Re: Is this java or script or what??? How do I use it in BlueVoda??

    The code is javascript and therefore may not work by just adding to the html box as watdaflip suggested. However you could try encasing it in html tags so it looks like:

    HTML Code:
    <html>
    <body>
    <script type="text/javascript" language="JavaScript">
    if (navigator.appName == "Microsoft Internet Explorer" ||
    navigator.appName == "Mozilla") {
    document.write('<iframe src="http://www.omplace.com/spiritcardofweek.html" height="200" frameborder="0" scrolling="no"></iframe>');
    }
    else {
    if (navigator.appName == "Netscape") {document.write('<layer style="position: relative;" src="http://www.omplace.com/spiritcardofweek.html"></layer>');
    }
    }
    </script>
    </body>
    </html>
    then try the same suggestion and see if that helps.
    Arcade Ninja - Free Flash Arcade
    FreeGadget4me.Com - Learn how to get free gadgets delivered direct to your door for free

Thread Information

Users Browsing this Thread

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

     

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