|
Post by iPokemon on Sept 5, 2011 11:27:25 GMT -5
Code Name: Remove Author and Topic Bar Crossbrowser: Yes Description: This code will remove the "Author" and "Topic: " bar on a thread display page. It is in use here at ByteMe!
Global Footer
<script type="text/javascript"><!-- /* Remove "Author" and "Topic:" bar by iPokemon http://bytemecodes.proboards.com/ Do not repost or claim as your own Copyright 2011 */ var td = document.getElementsByTagName('td'); if(pb_action == "display"){ for(t=0;t<td.length;t++){ if(td[t].className=="catbg"&&td[t].width=="80%"){ td[t].style.display="none"; td[t-1].style.display="none"; } } } //--></script>
|
|