Limited Support
Our support team is currently on holiday from December 25, 2025 to January 7, 2026, and replies may be delayed during this period.
We appreciate your patience and understanding while our team is away. Thank you for being part of the wpForo community!
Merry Christmas and Happy Holidays! 🎄
Hello colleagues, I do not know how to change the color to a new group of users that I have created:

Does anyone know where the color changes to make it look more?
Hi @FranRicht, you have to use custom css code to accomplish that. Open wordpress custom css page and add the following code;
span.wpf-member-title.wpfut.wpfug-7 {background: #000;
}
This makes the box full black. You can change #000 to any color you prefer. And to change font color simply add following code after background,
color: #yourcolorcode;
Note that, if this does not work for you, probably some other css code is overwriting yours. Just add !important eg;
color: #000 !important;
It works!!!!, but what does not work for me is changing the color of the letter:
span.wpf-member-title.wpfut.wpfug-7 {
background: #81F7F3; color: #ffffff; !important;
}
I do not know if I put it right But thank you very much anyway
This is the correct way;
span.wpf-member-title.wpfut.wpfug-7 {
background: #81F7F3;
color: #ffffff !important;
}

