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 8:53:20 GMT -8
Goes in Board or Global Footers (Depending if you want to center them in One board or all Boards)
This Version just centers the Quick Reply Box etc:
<script type="text/javascript"> /* center quick reply by elindir http://101support.proboards43.com do not redistribute */ <!-- var td = document.getElementsByTagName('td'); for(i=0;i<td.length;i++){ if(location.href.indexOf('action=headersfooters') == -1) if(location.href.match(/action=display/)){ if(td[i].innerHTML.match(/Quick Reply/) && td[i].width.match(/100%/) && td[i].className.match(/titlebg/)){ td[i].align="center"; td[i+1].align="center"; }}} //--> </script>
This version centers the box and removes "Shortcut to Quick Reply..."
<script type="text/javascript"> <!-- /* center quick reply & remove shortcut... by elindir http://101support.proboards43.com do not redistribute */ var td = document.getElementsByTagName('td'); for(i=0;i<td.length;i++) { if(location.href.indexOf('action=headersfooters') == -1) if(location.href.match(/action=display/) && td[i].innerHTML.match(/Quick Reply/) && td[i].width.match(/100%/) && td[i].className.match(/titlebg/)) { td[i].align="center"; td[i+1].align="center"; td[i+1].getElementsByTagName('font')[1].style.display="none"; } } //--> </script>
|
|