hi,and thanks for this,
any clue why i get this:?
if i take avatar out ,there are 6 plates numbers,
also my plates are in .jpg
thanks
>>>>>>>>>>>>>>>>>>>>>>>>>
update:
i manage to fix it:
find this in postbit_legacy
Code:
<vb:if condition="$post['joindate']"><dt>{vb:rawphrase join_date}</dt> <dd>{vb:raw post.joindate}</dd></vb:if>
and add above the code from first post or main post! (change path to whatever you want where you put your pictures
and also the field X and Y !)
Code:
</vb:if>
<vb:if condition="$post['userid']">
<vb:if condition="$post['fieldXX']">
<div class="jdm_plate" style="background-image:url(http://www.yoursite.com/images/buttons/plates/{vb:raw post.fieldXX}.jpg);">
<p><b>{vb:raw post.fieldYY}</b></p>
</div>
</vb:if>
</vb:if>
<vb:if condition="$post['userid']">
and in my case or my forum skin that i have , i used this code :
Code:
div.jdm_plate{
height:93px;
}
div.jdm_plate p {
padding-top: 35px;
padding-left: 35px;
font-size:24px;
text-transform:uppercase;
color:black;
}
and my blank plates are re-sized to 180x90 .jpg
thanks
(sorry for the codes added just in case other people have the same problem
like i had in my case.)