When I added your code I noticed that the "td>" tag was showing along with the Bold tags, so I adjusted it incase anyone else was having the same issue.
Original Code
PHP Code:
<!-- ADD-IN BOX -->
<thead>
<tr>
<td class="tcat" colspan="2">[b]TITLE HERE[/b]td>
</tr>
</thead>
<if condition="$show['loggedinusers']">
<!-- logged-in users -->
<tbody id="collapsbj_forumhome_activeusers" style="$vbcollapse[collapseobj_forumhome_activeusers]">
<tr>
<td class="alt2"><img src="$stylevar[imgdir_misc]/whos_online.gif" alt="$vbphrase[view_whos_online]" border="0" /></a></td>
<td class="alt1" width="100%">
<div class="smallfont">
<center>
<!-- EDIT TEXT HERE -->
[b]Blah blah blah[/b]
<!-- EDIT TEXT HERE -->
</center>
</td>
</tr>
</tbody>
</if>
<br />
<!-- end ADD-IN BOX-->
Adjusted Code
PHP Code:
<!-- ADD-IN BOX -->
<thead>
<tr>
<td class="tcat" colspan="2"><B>TITLE HERE</B><td>
</tr>
</thead>
<if condition="$show['loggedinusers']">
<!-- logged-in users -->
<tbody id="collapsbj_forumhome_activeusers" style="$vbcollapse[collapseobj_forumhome_activeusers]">
<tr>
<td class="alt2"><img src="$stylevar[imgdir_misc]/whos_online.gif" alt="$vbphrase[view_whos_online]" border="0" /></a></td>
<td class="alt1" width="100%">
<div class="smallfont">
<center>
<!-- EDIT TEXT HERE -->
<B>Blah blah blah</B>
<!-- EDIT TEXT HERE -->
</center>
</td>
</tr>
</tbody>
</if>
<br />
<!-- end ADD-IN BOX-->