how to remove the name of the forum boards in Breadcrumb
devid456 Offline
Junior Member
**
Posts: 3
Joined: Jul 2013
Post: #8
RE: how to remove the name of the forum boards in Breadcrumb
this script removes the title bar that says

<script type="text/javascript">
<!--
/* remove Forum Name | Topics | Posts...
and add thread & post info by california */
var td=document.getElementsByTagName("td");
if(location.href.match(/\/?((index\.cgi)?\??(action=(ma.+ad|logout|home))?(#.+)?)?$/)){
    for(i=0;i<td.length;i++){
        if(td[i].width=="1%" && td[i].innerHTML.match(/\d/)){
            if(td[i+1].width.match(/^(1|7)%$/)){
                td[i].innerHTML+="<br />threads";
                td[i].width="8%";
            }else{
                td[i].innerHTML+="<br />posts";
                td[i].width="7%";
            }
        }
        if(td[i].width=="8%" && !td[i].innerHTML.match(/thread/)){
            td[i].width="4%";
        }
        if(td[i].className=="titlebg" && td[i].innerHTML.match(/Forum Name/i)){
            td[i].parentNode.style.display="none";
        }
    }
}
//-->
</script>
07-03-2013 11:44 PM
Find all posts by this user Quote this message in a reply

« Next Oldest | Next Newest »

Messages In This Thread
RE: how to remove the name of the forum boards in Breadcrumb - devid456 - 07-03-2013 11:44 PM

 Standard Tools
Forum Jump: