MyBB Community Forums

Full Version: smalltext username
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
hi friends.

I want to ask. how to smalltext username?

[attachment=29181]
instead of reducing user name appearing there, you should restrict the maximum characters a user name can have.
setting available at admin panel >> configuration >> User Registration and Profile Options >> Maximum Username Length
set that to 15
......................................................
you can also increase the left column width on postbit.
find code starting with <td class="{$altbg}" width="15%" on postbit_classic template. change width to 25%
hi .m.

I want to shrink the user name becomes smaller.

how to. because it could make chaotic appearance thread. if one is to make the name too long it will become a problem.
not solved.

if anyone can help?
Go to Templates & Style -> Templates -> Expand Templates of your theme -> Post Bit templates -> postbit_classic
Change:
<strong><span class="largetext">{$post['profilelink']}</span></strong>
To:
{$post['profilelink']}
Or if you want even smaller:
<span class="smalltext">{$post['profilelink']}</span>
thanks Destroy666