inherit
52328
0
Mar 13, 2009 16:15:58 GMT -8
CrAzY_J
871
July 2005
crazyj2
|
Post by CrAzY_J on Oct 4, 2005 20:21:30 GMT -8
Don't think this has been submitted already.. Code Description: This will add a image of your choice to the bottom of every page, much like the copyright images used on Hatake/SSD.. Code Placement: Global Footers <script type="text/javascript"> /* Image on bottom of page. created by CrAzY_J Do not redistribute this code */ var ImgLink = "Url Image";
this.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> Edit the red part of the code.
|
|