Ross
eCreations Staff
Posts: 1,768
|
Post by Ross on Jul 5, 2005 19:28:41 GMT
Board or Global Footer(Depending if you want it to affect one board or the whole forum)This will move the Sub-boards from the top of the forum and put them at the bottom <script type="text/javascript"> <!-- /* move sub-boards to footer by ross 101support.proboards43.com do not redistribute */
if(location.href.match(/board=\w+/) && !location.href.match(/thread=/)) { var table = document.getElementsByTagName('table'); for(i=0; i<table.length; i++) { if (table.item(i).innerHTML.match(/Sub-Boards</i) && table.item(i).className == 'bordercolor' && table.item(i).width == '100%') { table.item(i).width = '92%'; table.item(i).align = 'center'; table.item(i).nextSibling.style.display = 'none'; document.body.appendChild(table.item(i)); } } } //--> </script>
|
|