Oliver
Junior Member
Posts: 264
inherit
37155
0
Aug 21, 2005 13:04:18 GMT -8
Oliver
264
February 2005
cloughhall
|
Post by Oliver on Jun 26, 2005 22:41:32 GMT -8
Hi could someone please make me a code that removes th mark as read cell, and all of the bar that it is in.
Removes the Forum name row, The one in the database is no good as im using a code to remove the posts and topis cells.
Best Wishes Oliver
|
|
crazyone
inherit
-493620
0
Dec 2, 2024 6:44:58 GMT -8
crazyone
0
January 1970
GUEST
|
Post by crazyone on Jun 26, 2005 23:53:22 GMT -8
Hi could someone please make me a code that removes th mark as read cell, and all of the bar that it is in. Removes the Forum name row, The one in the database is no good as im using a code to remove the posts and topis cells. Best Wishes Oliver headers: <script> <!--document.getElementsByTagName('font')[1].innerHTML='';//--> </script> not sure of it works
|
|
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 27, 2005 0:44:49 GMT -8
This should remove "mark as read" <script type="text/javascript"> var td=document.getElementsByTagName("td"); for(e=0;e<td.length;e++){ if(td[e].innerHTML.match(/markasread/) && td[e].height=="18" && td[e].className.match(/catbg/) && td[e].colSpan=="5"){ td[e].style.display="none"; }}</script> Main Footer.
|
|
inherit
Proboards Legend
212
0
May 11, 2006 12:32:55 GMT -8
california
21,035
December 1999
california
|
Post by california on Jun 27, 2005 23:41:29 GMT -8
<script type="text/javascript"> <!-- /* remove Forum Name bar by california */ var td=document.getElementsByTagName("td"); if(location.href.match(/com\/?((index\.cgi)?\??(action=(ma.+ad|logout|home))?(#.+)?)?$/)){ for(i=0;i<td.length;i++){ if(td.className=="titlebg" && td.innerHTML.match(/Forum Name/i)){ td.parentNode.style.display="none"; } } } //--> </script> It's the same code, just removed the thread/post stuff. headers: <script> <!--document.getElementsByTagName('font')[1].innerHTML='';//--> </script> not sure of it works 1) No it doesn't 2) It's not what they requested
|
|