inherit
25709
0
Jun 12, 2009 20:55:02 GMT -8
hpmad
1,017
June 2004
hpmad7
|
Post by hpmad on Oct 8, 2005 21:26:56 GMT -8
Description:This will add the thread starter's name under the thread title. Edit the first line and change "Thread Started By:" to whatever you want. Preview:img76.imageshack.us/img76/8820/previewhq4.jpgGlobal Footer:<script type="text/javascript"> <!--
/* Thread Starter Under Thread Name by hpmad Do not repost or claim without permission from creator For more codes like this one go to: talkpark.proboards.com */
var start = 'Thread started by:';
if(location.href.match(/board=/) && !location.href.match(/action=/)){ var td = document.getElementsByTagName('td');
for(i=4;i<td.length;i++){ if(td.className=='windowbg' && td.width.match(/48|43/i) && td.innerHTML.match(/board=/i)){ var starter = td[i+1].innerHTML; td.innerHTML+= '<font size="1"><br />'+start+' '+starter+'</font>'; }else if((td.colSpan=='7' || td.colSpan=='8') && td.className.match(/windowbg2|titlebg|catbg/)){ td.colSpan = td.colSpan=='7' ? '6':'7'; }else if(td.width=='14%' && td.className.match(/windowbg2|catbg/)){ td.style.display = 'none'; } } }
//--> </script>
|
|