HTML Code:
<dt>Thanks</dt> <dd>12</dd>
<dd style="white-space: nowrap; display: inline; float: left;">Thanked 6 Times in 6 Posts</dd>
<dt>Time Online</dt> <dd>19 Mins 36 Secs</dd>
<dt>Avg. Time Online</dt> <dd>16 Mins 49 Secs</dd>
The code above is taken from your postbit, and if you notice, one of the <dd> tags for the Thanked Hack has "display: inline; float: left;" within it, that is what is causing the problem.
That block of code should look like this:
HTML Code:
<dt>Thanks</dt> <dd>12</dd>
<dd style="white-space: nowrap;">Thanked 6 Times in 6 Posts</dd>
<dt>Time Online</dt> <dd>19 Mins 36 Secs</dd>
<dt>Avg. Time Online</dt> <dd>16 Mins 49 Secs</dd>
Hope this helps.