Please login or register. Welcome to the Studio, guest!


Quick Links:


newBookmarkLockedFalling

crazynarutard

crazynarutard Avatar

*****
Senior Studio Member

1,470


August 2005
This code will add a image of your choice to the botom of the page.
Edit the red part for the url of the image.
temporary preview: crazyj.suddenlaunch3.com
All footers
<script type="text/javascript">
/*
Add Image to footer page
created by CrAzY_J
Do not redistribute this code
*/
var ImgLink = "Url Image";

document.body.onload = function(){
var Div = document.createElement( "div" );
var Center = document.createElement( "center" );
var Image = document.createElement( "img" );
Image.src = ImgLink;
Image.border = 0;
Div.appendChild( Image )
Center.appendChild( Div )
document.body.appendChild( Center );
}
</script>




Last Edit: Jun 30, 2006 21:12:59 GMT by Chris

newBookmarkLockedFalling