XF 2.3 Font color for usergroup, user?

Robert9

Well-known member
Do we have a function for different font colors for the text in posts for groups or users?
If not, how to solve it?

Check for group or username, do a regex for {all} and add font before and /font after?
 
This is the only method that I've found to work for tags and has to be applied member by member in extra.less
CSS:
[data-user-id="1"] {
    color: red;
}
CSS:
[data-user-id="2"], [data-user-id="3"] {
    color: green;
}

Red for user id 1 & green for user ids 1 & 2.
 
Back
Top Bottom