R Robert9 Well-known member Jan 6, 2025 #1 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?
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?
frm Well-known member Jan 6, 2025 #2 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. Upvote 0 Downvote
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.
I iCe_Grimmjow New member Jan 15, 2025 #3 I use this one, you can change the color and the name of the group very easily HTML: <span style="font-weight:bold; color: red;">Administrador </span> Upvote 0 Downvote
I use this one, you can change the color and the name of the group very easily HTML: <span style="font-weight:bold; color: red;">Administrador </span>