|
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>
|
|
|
|