|
Post by Ross on Dec 31, 2005 19:42:33 GMT -5
The nav menu is the part above this thread that says: Gray Grid Designs v2 :: Code Centrality :: Code Accumulation for PBv4 :: Remove 'Nav' Tree This code will remove it.
Global 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)$/i)) { obj.removeChild(obj.firstChild); } break; } } //--> </script>
|
|