Ross
eCreations Staff
Posts: 1,768
|
Post by Ross on Oct 30, 2005 12:08:20 GMT
Main/Global Footer (Depending if you have sub-boards)
This will remove just the 'Topics' column
<script type="text/javascript"> <!-- var td = document.getElementsByTagName('td'); for(i=0; i<td.length; i++) { if(td.width == '1%' && td[i+1].width == '1%' && td[i+2].width == '24%') { td.style.display = 'none'; } } //--> </script>
This will remove just the 'Posts' column
<script type="text/javascript"> <!-- var td = document.getElementsByTagName('td'); for(i=0; i<td.length; i++) { if(td.width == '1%' && td[i+1].width == '1%' && td[i+2].width == '24%') { td[i+1].style.display = 'none'; } } //--> </script>
Or this will remove both the 'Topics' and 'Posts' columns
<script type="text/javascript"> <!-- var td = document.getElementsByTagName('td'); for(i=0; i<td.length; i++) { if(td.width == '1%' && td[i+1].width == '1%' && td[i+2].width == '24%') { td.style.display = 'none'; td[i+1].style.display = 'none'; } } //--> </script>
|
|
rafay
New Member
Posts: 9
|
Post by rafay on Jun 12, 2006 19:33:37 GMT
does not work for me it messed me forum
|
|
ME!
Moderator
~Remanifesting-Eternal.~
Posts: 778
|
Post by ME! on Jun 12, 2006 19:50:12 GMT
whats your forum Url ?
which code did you use ?
try moving the code to the very top of whichever footer its in and try..
|
|