Notifications
Clear all

Limited Support

Our team is currently on holiday, so support will be limited during this period. Response times may be slower than usual, and some inquiries may be delayed.
We appreciate your patience and understanding, and we’ll resume our usual support by the end of August.

 

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

3 Posts
2 Users
0 Reactions
1,054 Views
Dakata
Posts: 3
Topic starter
(@dakata)
Active Member
Joined: 5 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: 1522
(@tutrix)
Noble Member
Joined: 5 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: 5 years ago

Active Member
Posts: 3

@tutrix 
Thank you it worked!