Custom Profile Fields in postbit
I current use this code:
Code:
<!--- vehicle display info --->
<br> <span class="smallfont">
<if condition="$post['field6']"><div> $post[field6]</div></if>
<if condition="$post['field7']"><div> $post[field7]</div></if>
<if condition="$post['field8']"><div> $post[field8]</div></if>
<if condition="$post['field9']"><div> $post[field9]</div></if>
</span>
<!--- /vehicle display info --->
To display the year, make, model, etc.. next to each users nick below the $post[usertitle] in the postbit template.
Rather than having all this info taking up so much space. I would like to create a drop down with this info.
Is their anyway to do this & maybe someone could point me in the right direction.