MyBB Community Forums

Full Version: Need a code above sign
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
How can i put a code which do something like screenshot i have add at the attachment, putting a "My friends list" 1st i think i have to make a "custom Profile Fields" and how do i make it come at the sign, above the sign like i post the image?
bump Smile
i think i can bump for this thread cause it have been for very long time Smile

Bump
Go to ACP > Templates > Modify/Delete > *Expand* > Post Bit Templates > postbit and follow the instructions.
Quote:Find:
{$post['signature']}

Add Above:
<br />
<b>My Friends<b>: $post[fidX]
<br />

X - Your custom profile ID
Thanks how can i put the line ____________________ above the My friends?
use the
<hr>
before the <b>

Wink
or <hr /> for xhtml compatibility
Thanks guys can it be short like the below line? or increase the below line? Smile
Yep:

<hr size="1" width="25%"  align="left" />

Just change the size / width / align.
Thanks that worked Smile
Tikitiki Wrote:or <hr /> for xhtml compatibility
DragonLord, guess if you want to follow the xHTML standards then you should change the coding too:
Quote:<br />
<hr size="1" width="25%" align="left" />
<strong>My Friends</strong>: $post[fidX]
<br />
Thanks for that Smile