Find:
HTML Code:
<strong>Your Profile at a Glance:</strong><br /><br />
<div>
<strong>Your Username:</strong> <a href="member.php?u=$bbuserinfo[userid]">$bbuserinfo[username]</a>       
<strong>Your Post Count:</strong> <a href="search.php?do=finduser&u=$bbuserinfo[userid]">$bbuserinfo[posts]</a><br /></div><div>
<strong>Your User Number:</strong> $bbuserinfo[userid] / $numbermembers       
<strong>Your Email:</strong> <a href="mailto:$bbuserinfo[email]">$bbuserinfo[email]</a><br /><br />
<strong>Your Signature:</strong><br />
$bbuserinfo[signature]
</div>
Replace:
HTML Code:
<strong>Your Profile at a Glance:</strong><br />
<table cellpadding="4" cellspacing="0" border="0">
<tr>
<td><strong>Your Username:</strong></td>
<td><a href="member.php?u=$bbuserinfo[userid]">$bbuserinfo[username]</a></td>
<td><strong>Your Post Count:</strong></td>
<td><a href="search.php?do=finduser&u=$bbuserinfo[userid]">$bbuserinfo[posts]</a></td>
</tr>
<tr>
<td><strong>Your User Number:</strong></td>
<td>$bbuserinfo[userid] / $numbermembers</td>
<td><strong>Your Email:</strong></td>
<td><a href="mailto:$bbuserinfo[email]">$bbuserinfo[email]</a></td>
</tr>
<tr>
<td colspan="4"><strong>Your Signature:</strong></td>
</tr>
<tr>
<td colspan="4">$bbuserinfo[signature]</td>
</tr>
</table>