Ok.. ive sussed this out
http://www.vbulletin.com/forum/showp...01&postcount=1
I have managed to make a user profile field appear under my user title..
Quote:
eg.
Admin CP -> Styles & Templates -> Style Manager -> ? ? -> Postbit Templates -> postbit or postbit_legacy (depending on which layout you use)
Find this..
Code:
<if condition="$post['usertitle']"><div class="smallfont">$post[usertitle]</div></if>
add this..
Code:
<if condition="$post['fieldX']">
Gender: $post[fieldX]
</if>
fill the "x" with your profile field number, replace the word gender to your need
|
What i need to know is, I need a space before this text appears and the font to be smaller and in italics..
I presume i would change the font and italics in the profile field javascript.. but could do with the exact code so i dont mess it up..
Thanks in advance..