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 Jul 18, 2005 9:31:52 GMT -8
Global FooterThis code will add a message or image or both in place of the reply button in locked threads. Edit the red with what you want to put, it can be either text or an image as shown.
<script type="text/javascript"> <!-- /* locked thread message */ var locked=' <img src="URL" /> Message'; var td = document.getElementsByTagName('td'); for(t=0;t<td.length;t++) if(td[t].width=="50%" && td[t].align=="right" && td[t].firstChild.firstChild.alt=="[Send Topic To Friend]"){ td[t].valign="top"; td[t].innerHTML=locked+td[t].innerHTML; } //--> </script>
|
|