but their is no fix for it correct?
--------------- Added [DATE]1304911044[/DATE] at [TIME]1304911044[/TIME] ---------------
and that only how its seen by yourself, when viewed by someone else it is all aligned on the left-side instead of spaced out left to right..
--------------- Added [DATE]1304912222[/DATE] at [TIME]1304912222[/TIME] ---------------
yay! i got around it..
A) remove the d.o.b from memberinfo_block_aboutme
B) duplicate the top part of the code in memberinfo_profilefield and replace with the bottom part..
ending up with this
Code:
<dl>
<vb:if condition="$show['profilefield_edit']">
<dt id="profilefield_title_{vb:raw profilefield.profilefieldid}" class="aboutme_left">{vb:raw profilefield.title}</dt>
<dd id="profilefield_value_{vb:raw profilefield.profilefieldid}" class="aboutme_right">
{vb:raw profilefield.value}
<script type="text/javascript">
<!--
vBulletin.register_control("vB_ProfilefieldEditor", "{vb:raw profilefield.profilefieldid}");
//-->
</script>
</dd>
<vb:else />
<dt id="profilefield_title_{vb:raw profilefield.profilefieldid}" class="aboutme_left">{vb:raw profilefield.title}</dt>
<dd id="profilefield_value_{vb:raw profilefield.profilefieldid}" class="aboutme_right">
{vb:raw profilefield.value}
</dd>
</vb:if>
</dl>
awesome