|
Post by iPokemon on Sept 4, 2011 20:09:35 GMT -5
Code Name: Move Logo Banner Anywhere Tested in: FF, IE, Opera, Google Chrome Instructions: The div(the first listed code) is where the logo banner will appear. Put that wherever you want it displayed, whether it be by itself or in a table or something. The second script listed then needs to be somewhere below it. It doesn't have to be directly below it! Other than that, there is no editing necessary!
<div id="bannerDiv"></div>
<script type="text/javascript"><!-- /* Move Logo Banner Anywhere by iPokemon Feel free to edit and repost Just keep this header intact! http://bytemecodes.proboards.com/ */ var bannerDiv = document.getElementById('bannerDiv'); var bannerSrc = document.getElementsByTagName('font').item(0); var bannerClone = bannerSrc.cloneNode(true); bannerDiv.innerHTML=bannerClone.innerHTML; bannerSrc.style.display="none"; //--></script>
|
|