Hello if you got your own website and want a pop up where you can vote etc..
Then i will give you a script to make a pop up:
the jQuery Script: (insert in
index.php or .htm or whatever you have)
Code:
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.3/jquery.min.js" type="text/javascript"></script>
<script type="text/javascript">
$(document).ready(function(){
$(".reminder").fadeTo(0, 0)
$(".reminder").fadeTo("slow", 1)
$("#close").click(function(){
$(".reminder").fadeTo("slow", 0, callback_hide)
function callback_hide() { $(".reminder").hide(0) }
})
})
</script>
The css code: to put it in center and make the correct size:
Insert into
index.php or .htm too but make sure its in these tags <html><head></html></head>
Insert into your style
.css or whatever..
Code:
.reminder {
width:460px;
height:auto;
text-align:center;
background-color:black;
border:1px solid black;
position:absolute;
left:300px;
top:200px;
z-index:999;
}
Now the html code which kind of activate it all.
Code:
<div class="reminder"><a href="XtremeTop 100 Link"><img src="Your Banner Link" border="no"/></a><br /><br /><a href="#" id="close">Close</a></div>
this .reminder think is what you call it.
you can call it whatever you want.. like go to the css code and edit: .votepop etc... then edit all the other places too, but dosnt really matter what you call it

Hope you enjoy xD
SHOW OUT:
Credits:
Jquery script (jesper for learning me how to do it)
myself html and css. (Jesper also learned me long time ago xD)
Bookmarks