Announcement

Collapse
No announcement yet.

popup pages...

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

  • popup pages...

    Hi,
    How can I add popup pages to my site...? Thanks a lot...

  • #2
    You will need some java script for this. Do a google search.

    VodaHost

    Your Website People!
    1-302-283-3777 North America / International
    02036089024 / United Kingdom
    291916438 / Australia

    ------------------------

    Top 3 Best Sellers

    Web Hosting - Unlimited disk space & bandwidth.

    Reseller Hosting - Start your own web hosting business.

    Search Engine & Directory Submission - 300 directories + (Google,Yahoo,Bing)


    Comment


    • #3
      Originally posted by civcivcikcikder
      Hi,
      How can I add popup pages to my site...? Thanks a lot...

      Send me a email and try this on for FREE and see if you like .
      This on has 4 different types.Little bit of getting use to .But it is easy after that
      Glenn

      Comment


      • #4
        Originally posted by civcivcikcikder
        Hi,
        How can I add popup pages to my site...? Thanks a lot...
        Add the following to code to "betweenthe Head"

        <script language="javascript" type="text/javascript">

        <!--

        var win=null;

        function NewWindow(mypage,myname,w,h,scroll,pos){

        if(pos=="random"){LeftPosition=(screen.width)?Math .floor(Math.random()*(screen.width-w)):100;TopPosition=(screen.height)?Math.floor(Mat h.random()*((screen.height-h)-75)):100;}

        if(pos=="center"){LeftPosition=(screen.width)?(scr een.width-w)/2:100;TopPosition=(screen.height)?(screen.height-h)/2:100;}

        else if((pos!="center" && pos!="random") || pos==null){LeftPosition=0;TopPosition=20}

        settings='width='+w+',height='+h+',top='+TopPositi on+',left='+LeftPosition+',scrollbars='+scroll+',l ocation=no,directories=no,status=no,menubar=no,toolbar=no,resizable=no';

        win=window.open(mypage,myname,settings);}

        // -->

        </script>

        change the parts in red to what you what.

        then to make "link" place the following in a html box where to want the link

        <FONT style="FONT-SIZE:10pt" color="#000000" face="Arial">
        <a href="http://www.yoursite/pagetopopup.html" onclick="NewWindow(this.href,'message','495','600','yes','center');return false" onfocus="this.blur()" class="style1">Pop up Link</A></FONT>

        again change the parts in red.

        If you have "link" style change "stlye1" to the correct name, if not remove class="style1"

        you can change the font size colour etc are required

        if you what to use a image instead use the following in HTLM box

        <a href="http://www.yoursite/pagetopopup.html" onclick="NewWindow(this.href,'message','800','500','no','center');return false" onfocus="this.blur()"><img src=" http://www.yoursite/pagetopopup.gif" align="top" border=0 width=109 height=27 ></a>

        * make sure you set the right height, width of the image

        any problems either email me or post here


        www.bluevodaexchangelink.com
        BluevodaExchangeLink Help Center
        Bluevodaexchangelink Forum

        The only place for bluevoda site to be linked with!

        Comment


        • #5
          thanks for answers...

          Comment

          Working...
          X