Those are the on and off folders, right? If so, do this:
in forumhome_forumbit_level1_post
Find:
HTML Code:
<td><img src="$stylevar[imgdir_statusicon]/forum_$forum[statusicon].gif" alt="" border="0" /></td>
and replace that with:
HTML Code:
<td><a href="archive/index.php/f=$forum[forumid]"><img src="$stylevar[imgdir_statusicon]/forum_$forum[statusicon].gif" alt="" border="0" /></a></td>
In forumhome_forumbit_level2_post find:
HTML Code:
<td class="alt2"><img src="$stylevar[imgdir_statusicon]/forum_$forum[statusicon].gif" alt="" border="0" /></td>
and replace with:
HTML Code:
<td class="alt2"><a href="archive/index.php/f=$forum[forumid]"><img src="$stylevar[imgdir_statusicon]/forum_$forum[statusicon].gif" alt="" border="0" /></a></td>
Is that what you were wanting?