ŖЌǾ
Full Member
Posts: 227
|
Post by ŖЌǾ on Nov 21, 2007 15:39:27 GMT -5
Ok so I've made a code that allowes u to add an image to the buttoms of the forum Tested on: FF, Opera, and IE. Hope u guys will like it. Be sure to place this code in Global Footer. Preview: Click<script type="text/javascript"> <!-- // Adds image to buttom of forum. //Coded by Roger aka RKO. //Do not RIP. var george = document.createElement('center'); var roger = document.createElement('img'); roger.src = 'IMG URL'; george.appendChild(roger);
window.onload = function() { document.body.appendChild(george); } //--> </script>
|
|
Kahless
Administrator
Guitar Star
Posts: 1,045
|
Post by Kahless on Nov 21, 2007 17:53:34 GMT -5
But its above the adds, that can be done by using an image tag
|
|
|
Post by gray929 on Nov 21, 2007 18:09:58 GMT -5
Yeah, or something simpler like this which can go anywhere.
<p align="center"> <img src="IMAGE URL GOES HERE"> </p>
|
|
ŖЌǾ
Full Member
Posts: 227
|
Post by ŖЌǾ on Nov 22, 2007 9:04:19 GMT -5
<script type="text/javascript"> <!--
var roger = document.createElement('img'); roger.src = 'IMG URL'; roger.align = 'center';
window.onload = function() { document.body.appendChild(roger); } //--> </script> FIXED!
|
|
Kahless
Administrator
Guitar Star
Posts: 1,045
|
Post by Kahless on Nov 22, 2007 13:39:38 GMT -5
Yep, Ill add it when I get home
|
|
ŖЌǾ
Full Member
Posts: 227
|
Post by ŖЌǾ on Nov 22, 2007 13:59:35 GMT -5
Thanks
|
|