Announcement

Collapse
No announcement yet.

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

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • 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
    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

    Comment


    • #3
      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

      Comment


      • #4
        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.
        Regards Chris.

        Collectables, Collecting, collectors-info.com

        www.chrismorris.co.uk

        House build project

        Comment


        • #5
          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

          Comment

          Working...
          X