Bold Lettering

Lowright

Aspirant
Joined
Oct 17, 2017
Messages
11
I want to make all my members names in BOLD lettering how would I do that and where would I e able to do it at. Is there a certain html code I need

Thank you
 

MarkFL

La Villa Strangiato
Joined
Jul 3, 2017
Messages
1,245
Follow:

AdminCP -> Usergroups -> Usergroup Manager

And choose the first usergroup you want to make bold...on the right you should see a drop-down menu that by default says "Edit Usergroup..." and click the "Go" button.

The third setting from the top is called "Username HTML Markup" and it has two inputs...the one on the left is for the opening tag(s) and the one on the right is for the closing tag(s).

In the input on the left, enter:

HTML:
<span style="font-weight: bold;">

In the input on the right, enter:

HTML:
</span>

I recommend giving special/staff usergroups colors, but make sure they are readable in your style(s). For example, if you wish for the admins to have bold red usernames, then use:

HTML:
<span style="font-weight: bold; color: red;">

HTML:
</span>
 
Top