Notifications
Clear all

wpForo 1.x.x [Solved] How can i change "Solved" icon color only?

3 Posts
2 Users
0 Likes
726 Views
Dakata
Posts: 3
Topic starter
(@dakata)
Active Member
Joined: 4 years ago

I have set my wpforo to the Gray Style.

I was able to adjust several of the default colors but when i change the color of the "Solved" icon it also change the color of online users. I want the online users to still be green and the "Solved" icon to be gray. How can i do that?

Thanks in advance!

2 Replies
Tutrix
Posts: 1265
(@tutrix)
Noble Member
Joined: 4 years ago

@dakata

Try
add this to custom css

.fa-check-circle::before {
color: #777777 !important;
}

or only in the Forum Statistics

#wpforo #wpforo-wrap #wpforo-stat-body .wpf-last-info i.fa-check-circle::before { 
color:#777777 !important;

Dashboard > Forums > Settings > Style (custom css)

1 Reply
Dakata
(@dakata)
Joined: 4 years ago

Active Member
Posts: 3

@tutrix 
Thank you it worked!