You have to modify the code on each page that uses this structure (which is about every page in the forum...). This is an example of the code in question in faq.asp :
Response.Write " <table width=""100%"" border=""0"">" & vbNewLine & _
" <tr>" & vbNewLine & _
" <td><font face=""" & strDefaultFontFace & """ size=""" & strDefaultFontSize & """>" & getCurrentIcon(strIconFolderOpen,"","") & " <a href=""default.asp"">All Forums</a><br />" & vbNewLine & _
" " & getCurrentIcon(strIconBar,"","") & getCurrentIcon(strIconFolderOpen,"","") & " Frequently Asked Questions</font></td>" & vbNewLine & _
" </tr>" & vbNewLine & _
" </table>" & vbNewLine & _
This code should be the first Response.Write line in every file, as it is always what comes first on a page, under the header. If you're having problems finding the lines of code, use your text editor to do a search for 'strIconBar'. You can modify it this way to get it on one line:
Response.Write "<a href=""default.asp"">All Forums</a>" & vbNewline & _
" > current page name "
(Change it to this, delete the rest)