Great stuff. I changed the way the MEMBERINFO looks. Moved the warning to it's own fieldset (conditional) in the Forum Info.
In MEMBERINFO, Find:
Code:
<td><a href="search.php?$session[sessionurl]do=process&showposts=0&starteronly=1&exactname=1&searchuser=$userinfo[urlusername]" rel="nofollow"><phrase 1="$userinfo[username]">$vbphrase[find_all_threads_started_by_x]</phrase></a></td>
</tr>
</table>
</fieldset>
Add Under:
Code:
<if condition="$show['warning']">
<fieldset class="fieldset">
<legend>Warning Level</legend>
<table cellpadding="0" cellspacing="$stylevar[formspacer]" border="0">
<tr>
<td>
$userinfo[warning]
</td></tr>
</table>
</fieldset>
</if>