Quote:
Originally Posted by Raioneru
I was actually able to do it thanks to that, but now I'm trying to center everything so there isn't so much space between the information (example: Age: 23)

|
thats part of the original code provided by the developer of this mod
postbit_legacy
Code:
<vb:if condition="$post['age']">
<div class="etiket_postbit_alanI_userinfo_extra_yazIlarI">
{vb:rawphrase age} <dd> {vb:raw post.age}</dd></div></vb:if>
is the code you you are looking for within it
if you remove the
<dd> from it it should work, so it should look like this
Code:
<vb:if condition="$post['age']">
<div class="etiket_postbit_alanI_userinfo_extra_yazIlarI">
{vb:rawphrase age} {vb:raw post.age}</dd></div></vb:if>