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 Jun 20, 2005 16:32:40 GMT -8
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 elindir 101support.proboards43.com do not redistribute */ var i = document.getElementsByTagName('table'); for (m=0;m<i.length;m++){ if (location.href.match(/board=/) && !location.href.match(/thread=/) && i[m].innerHTML.match(/Sub-Boards</i) && i[m].className.match(/bordercolor/i) && i[m].width.match(/100%/i)){ document.write('<table width="92%" class="bordercolor" align="center" cellpadding="0" border="0" cellspacing="0">'+i[m].innerHTML+'<\/table>'); i[m].style.display="none"; break; } } </script> And this will create a copy of the sub-boards at the bottom so they appear above and below the threads. <script type="text/javascript"> /* move sub-boards to footer by elindir 101support.proboards43.com do not redistribute */ var i = document.getElementsByTagName('table'); for (m=0;m<i.length;m++){ if (location.href.match(/board=/) && !location.href.match(/thread=/) && i[m].innerHTML.match(/Sub-Boards</i) && i[m].className.match(/bordercolor/i) && i[m].width.match(/100%/i)){ document.write('<table width="92%" class="bordercolor" align="center" cellpadding="0" border="0" cellspacing="0">'+i[m].innerHTML+'<\/table>'); break; }} </script>
|
|