Need a login popup???
2 posters
Page 1 of 1
Re: Need a login popup???
Follow this topic about the login pop-up => [Link]
MrMario- Helper
-
Posts : 22186
Reputation : 1839
Language : test
Re: Need a login popup???
I know this!
But I should like in the picture.
a button to sign up, nothing else.
But I should like in the picture.
a button to sign up, nothing else.

Re: Need a login popup???
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
see here http://autinhyeu.com
Re: Need a login popup???
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 ->
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>
- Code:
<BODY onload="setVariables(); checkLocation();">
- 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>

» How to creat login popup when user click to the Login button?
» How to create popup but no login popup ????
» Login Popup?
» Login popup
» Login Popup Help
» How to create popup but no login popup ????
» Login Popup?
» Login popup
» Login Popup Help
Page 1 of 1
Permissions in this forum:
You cannot reply to topics in this forum