This topic was locked 8th Apr 08 at 5:11pm by Michael |
Fel!x Full Member
  
[AVATAR] Posts: 171 Status: Offline Gender: Male Location: Sydney Age: 31 Joined:
pmmsn | [F] Remove Subject/Last Post/Sub Board (6th Apr 08 at 7:21am UTC) Resolved - etc. :P | | Well in a board, even if "Forum Name" is disabled in Forum Settings, the Subject & Last Post bar appears. I was wondering if someone could make a code which a) removes this & b) removes the similar bar which appears when you have sub-boards.
 like here | |
|
|
Michael Moderator
    
![[Avatar]](http://av.wservices.co.uk/av.png) Recoding the future Posts: 4,043 Status: Offline Gender: Male Location: UK Joined:
Additional Groups: Coding Team
  
pmvForum | Re: Remove Subject/Last Post/Sub Board (6th Apr 08 at 9:14am UTC) | | try this:
<script> /*Hide some random bars*/ var t = get('td','tag'); for(i=0;i<t.length;i++){ if(t[i].width=='100%' && t[i].colSpan == '5' && t[i].className == 'title2' && t[i].innerHTML.match(/>Last Post</)){ t[i].style.display = 'none'; } if(t[i].width=='100%' && t[i].colSpan == '3' && t[i].className == 'title1' && t[i].innerHTML.match(/>Sub-Board Name</)){ t[i].style.display = 'none'; } } </script>
Global Footer | |
|
Fel!x Full Member
  
[AVATAR] Posts: 171 Status: Offline Gender: Male Location: Sydney Age: 31 Joined:
pmmsn | Re: Remove Subject/Last Post/Sub Board (7th Apr 08 at 5:58am UTC) | | It works great, thanks Wrighty! =] | |
|
|
Michael Moderator
    
![[Avatar]](http://av.wservices.co.uk/av.png) Recoding the future Posts: 4,043 Status: Offline Gender: Male Location: UK Joined:
Additional Groups: Coding Team
  
pmvForum | Re: Remove Subject/Last Post/Sub Board (7th Apr 08 at 8:54am UTC) | | | |
|