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 Jan 7, 2006 15:53:08 GMT -8
The nav menu is the part above this thread that says: ProBoards® Support :: General :: Coding and Design Boards :: Code Database :: Remove 'Nav' Tree This code will remove it.
Global Or Main Footer
<script type="text/javascript"> <!-- /* remove 'nav' tree by ross open source - please leave header intact */ var a = document.getElementsByTagName('a'); for(i=0; i<a.length; i++) { if(a.item(i).className == 'nav') { var obj = a.item(i).parentNode; while(obj.firstChild.nodeName.match(/^(br|a|#text|font)$/i)) { obj.removeChild(obj.firstChild); } break; } } //--> </script>
Edit, 19th March '06 - Bug Fix on Thread Listing Page (X Viewing)
|
|