Quote:
Originally Posted by Manoel J?nior
Please, how to fix in country:
My code:
Code:
<div class="etiket_postbit_alanI_userinfo_extra_yazIlarI">
Country:
<!-- Wy Country Flags Start -->
<vb:if condition="$post['field6']"><dd> <img src="{vb:stylevar imgdir_button}/flags/{vb:raw post.field6}.GIF" align="middle" alt="{vb:raw post.field6}" border="" /></dd></vb:if>
<!-- Wy Flags End -->
</div>
|
there we go
Code:
<vb:if condition="$post['field6']">
<div class="etiket_postbit_alanI_userinfo_extra_yazIlarI">
Country:
<dd>
<img src="{vb:stylevar imgdir_button}/flags/{vb:raw post.field6}.GIF" align="middle" alt="{vb:raw post.field6}" border="" />
</dd>
</div>