Notifications
Clear all

wpForo 1.x.x [Solved] user group color

7 Posts
3 Users
0 Likes
3,835 Views
Posts: 120
Topic starter
(@franricht)
Estimable Member
Joined: 6 years ago

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?

6 Replies
Sofy
Posts: 4309
 Sofy
Admin
(@sofy)
Support Team
Joined: 6 years ago

Hi FranRicht,

The options to manage Usergroup colors are located in Dashboard > Forums > Usergroup admin page. 

1 Reply
(@franricht)
Joined: 6 years ago

Estimable Member
Posts: 120
Posted by: Sofy

Hi FranRicht,

The options to manage Usergroup colors are located in Dashboard > Forums > Usergroup admin page. 

But that helps me to change the color of the name (in the Nuriphoto example in dark blue).
But what I want to change is the color of the box where Expert @ says.
In the picture you see, I do not know if I've explained myself, I'm sorry.

Posts: 11
(@ernesto)
Eminent Member
Joined: 6 years ago

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;

Posts: 120
Topic starter
(@franricht)
Estimable Member
Joined: 6 years ago

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

Posts: 11
(@ernesto)
Eminent Member
Joined: 6 years ago
This is the correct way;

span.wpf-member-title.wpfut.wpfug-7 {
background: #81F7F3;
color: #ffffff !important;
}
Page 1 / 2