Need a login popup??? Hitskin_logo Hitskin.com

This is a Hitskin.com skin preview
Install the skinReturn to the skin page

The forum of the forums
Would you like to react to this message? Create an account in a few clicks or log in to continue.
2 posters

    Need a login popup???

    avatar
    uknhan
    Forumember


    Male Posts : 27
    Reputation : 0
    Language : viet nam

    Need a login popup??? Empty Need a login popup???

    Post by uknhan December 12th 2009, 5:47 pm

    Create a popup login?
    Need a login popup??? Untitled-4
    Thanks!
    MrMario
    MrMario
    Helper
    Helper


    Male Posts : 22186
    Reputation : 1839
    Language : test

    Need a login popup??? Empty Re: Need a login popup???

    Post by MrMario December 12th 2009, 6:15 pm

    Follow this topic about the login pop-up => [Link]
    avatar
    uknhan
    Forumember


    Male Posts : 27
    Reputation : 0
    Language : viet nam

    Need a login popup??? Empty Re: Need a login popup???

    Post by uknhan December 13th 2009, 7:19 am

    I know this!
    But I should like in the picture.
    a button to sign up, nothing else. bounce
    avatar
    uknhan
    Forumember


    Male Posts : 27
    Reputation : 0
    Language : viet nam

    Need a login popup??? Empty Re: Need a login popup???

    Post by uknhan December 15th 2009, 5:14 am

    Please hellp me!
    avatar
    uknhan
    Forumember


    Male Posts : 27
    Reputation : 0
    Language : viet nam

    Need a login popup??? Empty Re: Need a login popup???

    Post by uknhan December 16th 2009, 4:15 am

    The code lets you put a logo on your site, it is always right corner above the screen and always keep a fixed position even if you drag the page up or down.
    see here http://autinhyeu.com
    avatar
    uknhan
    Forumember


    Male Posts : 27
    Reputation : 0
    Language : viet nam

    Need a login popup??? Empty Re: Need a login popup???

    Post by uknhan December 16th 2009, 1:22 pm

    I found a document and think it is related to the problem! but it is hard to understand, you can help me!

    Logo placed on the site

    This code lets you put a logo on your site, it is always the bottom right corner of the screen and always keep a fixed position even if you drag the page up or down. Note that you must use the Logo software for graphic design and put into its own. You can adjust the size and location of the logo discretion.

    <! - The steps are as follows: ->

    <! - Step 1: Paste the code below into the HEAD of the HTML document ->
    Code:
    <HEAD>

    <SCRIPT LANGUAGE="JavaScript">

    <!-- Begin

    function setVariables() {
    imgwidth=235;  // logo width, in pixels
    imgheight=19;  // logo height, in pixels
    if (navigator.appName == "Netscape") {
    horz=".left";
    vert=".top";
    docStyle="document.";
    styleDoc="";
    innerW="window.innerWidth";
    innerH="window.innerHeight";
    offsetX="window.pageXOffset";
    offsetY="window.pageYOffset";
    }
    else {
    horz=".pixelLeft";
    vert=".pixelTop";
    docStyle="";
    styleDoc=".style";
    innerW="document.body.clientWidth";
    innerH="document.body.clientHeight";
    offsetX="document.body.scrollLeft";
    offsetY="document.body.scrollTop";
      }
    }
    function checkLocation() {
    objectXY="branding";
    var availableX=eval(innerW);
    var availableY=eval(innerH);
    var currentX=eval(offsetX);
    var currentY=eval(offsetY);
    x=availableX-(imgwidth+30)+currentX;
    y=availableY-(imgheight+20)+currentY;
    evalMove();
    setTimeout("checkLocation()",10);
    }
    function evalMove() {
    eval(docStyle + objectXY + styleDoc + horz + "=" + x);
    eval(docStyle + objectXY + styleDoc + vert + "=" + y);
    }
    // End -->
    </SCRIPT>
    <! - Step 2: Insert the onload event in the BODY tag ->
    Code:
    <BODY onload="setVariables(); checkLocation();">
    <! - Step 3: Place the code below into the HTML document body ->
    Code:
    <div id="branding" style="position:absolute; visibility:show; left:235px; top:-50px; z-index:2">
    <table width=10 bgcolor=#ffffff><td>
    <a href="http://www.yoursite.com" onmouseover="window.status='Thanks for visiting!';return true" onmouseout="window.status='';return true"><center><img src="your-logo.gif" width="235" height="19" border="0"></center></a></font></td>
    </table>
    </div>