Ok as things stand *at the moment* you have this in your source code:
Code:
<dl class="userinfo_extra">
<dt>Join Date</dt> <dd>Sep 2010</dd>
<dt>Location</dt> <dd>United Kingdom</dd>
<dt>Posts</dt> <dd>14</dd>
<div class="eti_postbit">Blog Entries : <a href="blog.php/1">1</a></div>
</dl>
Needs to be changed to show this:
Code:
<dl class="userinfo_extra">
<dt>Join Date</dt> <dd>Sep 2010</dd>
<dt>Location</dt> <dd>United Kingdom</dd>
<dt>Posts</dt> <dd>14</dd>
<dt>Blog Entries</dt> <dd><a href="blog.php/1">1</a></dd>
</dl>
Without seeing your templates, the key to this is the
blog_postbit_entries_link template which is clearly doing something completely different.
Sort that out, get it matching the others (mainly by adding the <dd> and <dt> tags and removing the <div>), THEN put the boxes back and make the same changes that added the boxes into the
blog_postbit_entries_link template.