Gothika
New Member
I'm broken...
Posts: 25
|
Post by Gothika on Sept 25, 2004 6:16:24 GMT -5
Ok, you know the section above the categories that shows the Forum Name, Topics, Posts, and Mods? Well I need the code to get rid of that. I used to have it but I lost it...
|
|
|
Post by Tommy Huynh on Sept 25, 2004 7:39:48 GMT -5
Ok, you know the section above the categories that shows the Forum Name, Topics, Posts, and Mods? Well I need the code to get rid of that. I used to have it but I lost it... <script type="text/javascript"> <!-- var tCat = document.getElementsByTagName("td")
function textToImage(text,image){ for(t=0;t<tCat.length;t++){ with(tCat[t]){ var re = new RegExp("<b>" + text + "</b>","i") if(className.match(/(cat|title)bg/i) && innerHTML.match(re)){ innerHTML = innerHTML.replace(re,"<img src='" + image + "'>") }}}}
textToImage("Forum Name","http://img.photobucket.com/albums/v381/graygriddesigns/cotj/other/1.gif") textToImage("Topics","http://img.photobucket.com/albums/v381/graygriddesigns/cotj/other/1.gif") textToImage("Posts","http://img.photobucket.com/albums/v381/graygriddesigns/cotj/other/1.gif") textToImage("Last Post","http://img.photobucket.com/albums/v381/graygriddesigns/cotj/other/1.gif")
//--> </script>
Try this in your footers.
|
|
Gothika
New Member
I'm broken...
Posts: 25
|
Post by Gothika on Sept 25, 2004 8:06:29 GMT -5
It got rid of the text, but not the entire section.
|
|
|
Post by Tommy Huynh on Sept 25, 2004 17:20:04 GMT -5
Oh I'm sorry. Maybe you should try to take this up with *shudders* SSD.
|
|
Aspen
New Member
Posts: 29
|
Post by Aspen on Sept 25, 2004 18:59:22 GMT -5
Try this code.
Place in footers.
<script> var table=document.getElementsByTagName("table") for (tb=0;tb<table.length;tb++) { with (table[tb]) { if (cellPadding=="0" && cellSpacing=="0" && border=="0" && table[tb-1].align=="center" && table[tb-1].cellSpacing=="0") { rows[0].cells[0].style.display="none" } } } </script>
|
|