inherit
38546
0
Aug 17, 2006 17:14:31 GMT -8
purpletiger771
DimeS!!!
76
March 2005
purpletiger771
|
Post by purpletiger771 on Jun 20, 2005 14:47:04 GMT -8
can someone get me the code that puts the menu above the banner, and also the one that puts the ads above the banner? thanks!
|
|
inherit
Beware the ever changing head
33588
0
Nov 18, 2023 0:32:44 GMT -8
Ross
19,039
November 2004
elindir
|
Post by Ross on Jun 20, 2005 15:32:17 GMT -8
So you want Ads --> Buttons --> Banner? It's not that good but you can try this at the top of the Global Footer:
/me Points at Jays *
|
|
inherit
38394
0
Apr 25, 2007 15:15:26 GMT -8
clustyjr™
385
March 2005
clustyjr
|
Post by clustyjr™ on Jun 20, 2005 15:36:35 GMT -8
holy crap... that messed up everything! that code doesnt work, thanks though!
|
|
inherit
Beware the ever changing head
33588
0
Nov 18, 2023 0:32:44 GMT -8
Ross
19,039
November 2004
elindir
|
Post by Ross on Jun 20, 2005 15:43:06 GMT -8
holy crap... that messed up everything! that code doesnt work, thanks though! Said it wasn't very good So much so, it'll only work if it's at the very top of everything
|
|
inherit
Dork
7641
0
Jul 5, 2007 15:11:01 GMT -8
Jay
12,589
February 2003
trugie
|
Post by Jay on Jun 20, 2005 16:25:19 GMT -8
Ads above banner, Headers:
<script type="text/javascript"> <!--
document.write("<p id='above'></p>") var T = document.getElementsByTagName("table")[0]; T.parentNode.removeChild(T); T.style.marginTop = "14"; var newBR = document.createElement("br"); var newT = document.getElementById("above"); document.body.appendChild(newBR); document.body.replaceChild(T,newT);
//--> </script>
Menu above banner, Headers:
<script type="text/javascript"> <!--
var setIt = 'above'; // above: above banner, below: below banner var Classname = 'menubg'; // classname of menu background
function getMe(tagname) { return document.getElementsByTagName(tagname); } var re1 = /(1|2)/i; var setMatch = (setIt.substring(0,5).match(/^above$/))? '2' : '1'; getMe('td')[5].className = Classname; var pathMe = getMe('table')[0].insertRow(getMe('table')[0].rows.length - setMatch).insertCell(0); pathMe.style.padding = '0px'; pathMe.innerHTML = getMe('td')[5].innerHTML; getMe('td')[5].parentNode.parentNode.removeChild(getMe('td')[5].parentNode);
//--> </script>
|
|