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.

 

[Solved] Notification Bell Color

3 Posts
2 Users
1 Reactions
813 Views
Posts: 7
Topic starter
(@slite)
Active Member
Joined: 4 years ago

Due to the recent upgrade, the Notification Bell in the upper right hand corner has changed to Red.  For some unknown reason, the variable names were changed in the code so my settings in the CSS no longer applies.  Please provide the appropriate New variables for the notification Bell - the old ones were wpf-alerts .fa-bell and i.fas.fa-bell.

2 Replies
Robert
Posts: 10616
Admin
(@robert)
Support Team
Joined: 9 years ago

Hi @slite ,

The bell icon has been changed to svg, so you should use the following CSS to set correct color for inactive and active bell:

#wpforo #wpforo-wrap .wpf-alerts .wpf-bell{
    color: #999999;
}

#wpforo #wpforo-wrap .wpf-bar-right .wpf-alerts.wpf-new svg {
    color: #ff812d;
}

 

 

Posts: 7
Topic starter
(@slite)
Active Member
Joined: 4 years ago

Thanks.