PDA

View Full Version : Extend Username HTML Markup Question


randytnguyen7
04-11-2018, 04:23 PM
How to extend username HTML markup box in usergroup?

MarkFL
04-11-2018, 04:33 PM
What I would do is use CSS class selectors rather than inline styling. Put the selectors in your "additional.css" template(s) and then you can add as much CSS as you want without it having to fit into the input elements on the usergroup page.

randytnguyen7
04-11-2018, 04:36 PM
Can you give me more instruction?

MarkFL
04-11-2018, 04:44 PM
Okay, suppose you wish to add some CSS to your admins' usernames...in your "additional.css" template(s), you could add:

.usm_admin {
font-weight: bold;
color: #ff0000;
}

Note: The above is just an example of CSS...you can have as much as you want there.

And then in the first HTML markup field, put:

<span class="usm_admin">

And in the second field:

</span>

randytnguyen7
04-11-2018, 04:50 PM
Thanks alot. great