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


Quick Links:


newBookmarkLockedFalling

Chris

Chris Avatar

******
Head Coder

19,519


June 2005
This hack will add head/base images to the posting page.

Global footers.

<script type="text/Javascript">
// Posting Page Head/Base Images by Chris
// Do not redistribute without permissions of the creator

var headImg = "head"; // URL of the head image
var baseImg = "base"; // URL of the base image

// Don't edit
if(document.create_post){
var f = document.create_post.getElementsByTagName("table")[0];
var h = new Image();
h.src = headImg;
b = h.cloneNode(false);
b.src = baseImg;
f.parentNode.insertBefore(b, f.nextSibling);
f.parentNode.insertBefore(h, f);
}
</script>


newBookmarkLockedFalling