Notifications
Clear all

Suggestion Widgets - textcolor strange

8 Posts
3 Users
0 Reactions
63 Views
Posts: 6
Topic starter
(@steven007)
Active Member
Joined: 4 days ago

Hi, the heading text color of the "profile and notification widgets" is dark gray instead of white (see photo). How can I change this text color?
Thanks

7 Replies
Sofy
Posts: 4900
 Sofy
Admin
(@sofy)
Support Team
Joined: 7 years ago

Hi,

Use the CSS code below: 

#wpf-widget-profile, #wpf-widget-profile * {
    color: #fff;
}

Insert the code in the Top Admin Bar > Customize > Additional CSS > "Additional CSS" textarea, save it, delete all caches and check again.

Reply
Posts: 6
Topic starter
(@steven007)
Active Member
Joined: 4 days ago

Hi Sofy

The textcolor works fine. But the icons of the widget shouldn't change the color. Have a look at the attachment.

Thanks for support!

Steven

Reply
1 Reply
Tutrix
(@tutrix)
Joined: 5 years ago

Noble Member
Posts: 1492

Hi @steven007 

You can use the following CSS code

#wpforo #wpf-widget-profile .wpf-prof-footer .wpf-prof-buttons a, 
#wpf-widget-profile .wpf-prof-footer .wpf-prof-buttons a {
  color: #43a6df;
}
Reply
Posts: 6
Topic starter
(@steven007)
Active Member
Joined: 4 days ago

Hi,

the code not working!?

Reply
1 Reply
Tutrix
(@tutrix)
Joined: 5 years ago

Noble Member
Posts: 1492

@steven007 

Add this CSS code to the custom CSS

Dashboard > wpForo > Settings > Colors & Styles > Custom CSS

and clear browser cache.

Reply
Posts: 6
Topic starter
(@steven007)
Active Member
Joined: 4 days ago

Hi Tutrix

Did exactly as you said, but the code doesn't work. The code from Sofy in wordpress costum works, but the icons are highlighted in yellow in the example. Too bad

Reply
1 Reply
Tutrix
(@tutrix)
Joined: 5 years ago

Noble Member
Posts: 1492

@steven007 

Ok, try

.herald-sidebar-right .wpf-prof-footer .wpf-prof-buttons a * {
  color: #43a6df !important;
}
Reply