MyBB Community Forums

Full Version: Bolding parts of the user details in the Postbit
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hey, I'm trying to do a few things with the postbit, and needed your help.

Here it goes:

How can I bold parts of the postbit? I want to bold:
Posts:
Joined:
Reputation:
Warning Level:

I want to bold just those words, not the value shown next to them.

If you could help, that'd be great!
Simple. Just Use The <b> tags in the postbit.

Edit: I think The Template is YOURTHEME Templates > Postbit > Postbit
(2011-09-02, 03:39 AM)Everett777 Wrote: [ -> ]Simple. Just Use The <b> tags in the postbit.

Edit: I think The Template is YOURTHEME Templates > Postbit > Postbit

Sorry, I guess I didn't make myself clear enough...

Say I had this:

Posts: 8
Joined: Aug 2011
Reputation: 0
Warning Level: 0%

I only want posts, joined, reputation, and warning level bolded. I don't want 8, Aug 2011, 0 , and 0% bolded.
Open ACP -> Templates & Styles -> Templates -> Your theme -> Postbit templates -> postbit_author_user

Find:
Quote:{$lang->postbit_posts}

Replace with:
Quote:<strong>{$lang->postbit_posts}</strong>

Find:
Quote:{$lang->postbit_joined}

Replace with:
Quote:<strong>{$lang->postbit_joined}</strong>

Open ACP -> Templates & Styles -> Templates -> Your theme -> Postbit templates -> postbit_reputation

Find:
Quote:{$lang->postbit_reputation}

Replace with:
Quote:<strong>{$lang->postbit_reputation}</strong>

Open ACP -> Templates & Styles -> Templates -> Your theme -> Postbit templates -> postbit_warninglevel

Find:
Quote:{$lang->postbit_warning_level}

Replace with:
Quote:<strong>{$lang->postbit_warning_level}</strong>
That worked! Thank you very much! Big Grin