Quote:
Originally Posted by Markos
and for the msn/yahoo icons in postbit_legacy search for
Code:
{vb:raw post.icqicon} {vb:raw post.aimicon}{vb:raw post.msnicon}{vb:raw post.yahooicon}{vb:raw post.skypeicon}
and replace it with
Code:
<div class="eti_postbit">
{vb:raw post.icqicon} {vb:raw post.aimicon}{vb:raw post.msnicon}{vb:raw post.yahooicon}{vb:raw post.skypeicon}
</div>
i don't know why but if the user doesn't have a icon there the we box still shows as u can see in the pic's from below maybe some one can let us know how to sort this but it still looks good even with it there
|
For any entry where there is no data to be shown a blank box would show without an "if" statement: "vb:if condition="
Code:
<vb:if condition="$post['icqicon'] OR $post['aimicon'] OR $post['msnicon'] OR $post['yahooicon'] OR $post['skypeicon']">
<div class="imlinks">
<div class="eti_postbit">{vb:raw post.icqicon} {vb:raw post.aimicon}{vb:raw post.msnicon}{vb:raw post.yahooicon}{vb:raw post.skypeicon}</div>
</div>
</vb:if>