MyBB Community Forums

Full Version: How to make this text bold?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello. I would like to know, how to make the text bold, which is shown in the screenshot. 

https://imgur.com/a/QTqtaZL


Thanks in advance for the help!
In the postbit_author_user template

Find:

{$lang->postbit_posts} {$post['postnum']}<br />
{$lang->postbit_threads} {$post['threadnum']}<br />
{$lang->postbit_joined} {$post['userregdate']}
{$post['replink']}{$post['profilefield']}{$post['warninglevel']}

and replace with:

<strong>{$lang->postbit_posts}</strong> {$post['postnum']}<br />
<strong>{$lang->postbit_threads}</strong> {$post['threadnum']}<br />
<strong>{$lang->postbit_joined}</strong> {$post['userregdate']}
{$post['replink']}{$post['profilefield']}{$post['warninglevel']}

you need to do the same for the rep link, profile fields, and warning level - all postbit templates.