inherit
48696
0
Aug 22, 2005 9:00:04 GMT -8
dabombdigity
13
June 2005
dabombdigity
|
Post by dabombdigity on Jun 27, 2005 19:25:56 GMT -8
I have a problem, whenever I put in the code to move the adds to the top, and put in the codes to remove "Hey X, you have X new messages, X are new" and <<Home>> on the top. When I do this, the adds move to the top and the text doesn't go away. So, can you give me a code for both of them to work at the same time? Thanks!
|
|
inherit
Proboards Legend
212
0
May 11, 2006 12:32:55 GMT -8
california
21,035
December 1999
california
|
Post by california on Jun 28, 2005 1:10:35 GMT -8
You need to reverse the order of the codes if they aren't working together.
|
|
inherit
48696
0
Aug 22, 2005 9:00:04 GMT -8
dabombdigity
13
June 2005
dabombdigity
|
Post by dabombdigity on Jun 28, 2005 6:55:31 GMT -8
Could ya give me da code?
|
|
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 28, 2005 7:11:20 GMT -8
As cali said, just swap the order of the existing codes. You don't need a new one.
|
|
inherit
48696
0
Aug 22, 2005 9:00:04 GMT -8
dabombdigity
13
June 2005
dabombdigity
|
Post by dabombdigity on Jun 28, 2005 7:31:16 GMT -8
Can you give me the codes in order?
|
|
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 28, 2005 9:50:19 GMT -8
You should have the code to move the welcome table below the ads at the very top of your header.
|
|
inherit
48696
0
Aug 22, 2005 9:00:04 GMT -8
dabombdigity
13
June 2005
dabombdigity
|
Post by dabombdigity on Jun 28, 2005 15:35:32 GMT -8
It doesn't work, I tried putting them In a different order, but it isn't working...
|
|
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 28, 2005 16:01:28 GMT -8
Then can you post your URL?
|
|
inherit
48696
0
Aug 22, 2005 9:00:04 GMT -8
dabombdigity
13
June 2005
dabombdigity
|
Post by dabombdigity on Jun 29, 2005 6:42:00 GMT -8
|
|
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 29, 2005 8:05:31 GMT -8
Replace this (from your header)
<script> <!-- var tablea=document.getElementsByTagName('TABLE')[0] var TD=document.getElementsByTagName('TD') var TD1=TD[1].innerHTML var TD2=TD[2].innerHTML var TD5=TD[5].innerHTML document.write("<table align='center' cellspacing='1' cellpadding='0' border='0' width='92%'><tr><td width='100%'><table border='0' width='100%' cellspacing='0' cellpadding='0'><tr><td width='50%' class='welcomebg' align='center'>"+TD1+"</td><td width='50%' class='welcomebg' align='left'>"+TD2+"</td></tr></table><table align='center' cellspacing='0' cellpadding='3'><tr><td width='100%' align='center' class='menubg'>"+TD5+"</td></tr></table></td></tr></table>") tablea.style.display="none" --> </script> <script type="text/javascript"> <!-- var PMLogoCell = document.getElementsByTagName("TD")[1]; PMLogoCell.removeChild(PMLogoCell.lastChild) document.getElementsByTagName("TD")[2].style.display='none'; document.getElementsByTagName('table')[0].style.backgroundColor="transparent"; --> </script>
With this:
<script> document.getElementsByTagName("font")[1].innerHTML=""; document.getElementsByTagName("TD")[2].style.display='none'; document.getElementsByTagName('table')[0].style.backgroundColor="transparent"; </script> <script> /*Move Welcome Table Below Ads */ document.write("<div id='welcometable'></div>") var wTable = document.getElementsByTagName("TABLE")[0] wTable.parentNode.removeChild(wTable) wTable.style.marginTop="25px" document.body.replaceChild(wTable,document.getElementById('welcometable')) </script>
|
|
inherit
48696
0
Aug 22, 2005 9:00:04 GMT -8
dabombdigity
13
June 2005
dabombdigity
|
Post by dabombdigity on Jun 29, 2005 14:19:00 GMT -8
thanx
|
|