|
Post by Schubaltz on Jul 3, 2007 18:15:57 GMT -5
Description: Removes the Started By cell and places the information below the thread title.
Source: Open
Cross-browser: Yes
Global Footer <script type="text/javascript"> <!-- // Thread Creator Under Title
if(location.href.match(/board=[^&]+(&page=\d+)?$/)) for(var l = document.links, r = 4; r < l.length; r ++) if(l[r].className == "nav") { var i = l[r].parentNode.getElementsByTagName("table"); i = i[i[1].rows[0].cells.length == 1 ? 1 : 3].rows; for(var x = 1; x < i.length - 1; x ++) { if(i[x].cells.length == 1) continue; i[x].cells[3].style.display = "none"; i[x].cells[2].width = "62%"; if(i[x].cells[2].firstChild.className != "cattext") { i[x].cells[2].innerHTML += "<div>Started by: " + i[x].cells[3].innerHTML + "</div>"; } } break; } //--> </script>
|
|