Amanda
Forum Addict
hi
Posts: 251
|
Post by Amanda on Apr 2, 2012 0:47:39 GMT
Global Header
This will remove the border from the Welcome Table
<script type="text/javascript"> <!-- document.getElementsByTagName('table')[0].cellSpacing = 0; //--> </script>
This will remove the Hey X.. you have X messages
<script type="text/javascript"> <!-- document.getElementsByTagName('td').item(2).style.display="none"; //--> </script>
This will remove « Home » etc.
<script type="text/javascript"> <!-- document.getElementsByTagName('font').item(1).style.display="none"; //--> </script>
If you want to realign the menu buttons, use this. Change the red text to "right" to align the menu to the right
<script type="text/javascript"> <!-- document.getElementsByTagName("td").item(5).align="left"; //--> </script>
To change the banner on certain boards within the forum, use this in individual board headers:
<script type="text/javascript"> <!-- document.getElementsByTagName('img').item(0).src = "Banner URL"; //--> </script>
This will remove the date from the welcome table.
<script type="text/javascript"> <!-- document.getElementsByTagName('td').item(2).innerHTML = document.getElementsByTagName('td').item(2).innerHTML.split(/<br\s?\/?>/)[0]; //--> </script>
|
|