It looks like Firefox forces "DIV" to go to the next line like it would normally do in IE. The only reason IE doesn't put it on the next line is because of the "position: absolute". Maybe change the <div and </div> to <span and </span>.
For your username thing, do this:
First, change the [musername] to just musername without the brackets in the SHOWROSTER template.
Then in your showroster_header template:
Find:
Code:
<tr>
<td class="tcat" colspan="10">$user[$groupsort] ($usercount)</td>
</tr>
Change to:
Code:
<tr>
<if condition="($groupsort == 'musername')"><td class="tcat" colspan="10">Usernames ($usercount)</td>
<else /><td class="tcat" colspan="10">$user[$groupsort] ($usercount)</td></if>
</tr>
That should work like a charm.