Notifications
Clear all

[Solved] Notification Bell Color

3 Posts
2 Users
1 Reactions
133 Views
Posts: 9
Topic starter
(@slite)
Active Member
Joined: 3 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: 10534
Admin
(@robert)
Support Team
Joined: 8 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: 9
Topic starter
(@slite)
Active Member
Joined: 3 years ago

Thanks.