3.
find
<div class="imlinks userinfo_extra">
replace
<dl class="userinfo_extra">
<div class="post_field"><dt>Connect</dt><dd>
closed div
replace with </dd>
</div></dl>
---------------------------
In your style in place DL introduced DIV - do not properly. But since you have already done in the previous block. Therefore validation will show the error.
example:
The correct code is:
Code:
<div>
<dl>
<dt><dd></dt></dd>
</dl>
</div>
incorrect code
Code:
<dl>
<div>
<dt><dd></dt></dd>
</div>
</dl>
--------------- Added [DATE]1358689260[/DATE] at [TIME]1358689260[/TIME] ---------------
1.
.postbitlegacy .userinfo .postuseravatar, .eventbit .userinfo .eventuseravatar {
_display: block;
_float: left;
2.
Leave as is. It will be hard to fix you