MyBB Community Forums

Full Version: How to change the forum icon when there is no unread posts?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I currently use Emerald theme on my board which uses "fa fa-comments" to display the list of forums in the index. The problem I'm facing is that it stays the same no matter if there are any unread threads or not. I want to change the icon when there's nothing unread in the forum.

[Image: u1SBtuU.png]
Look in themes > Majestic  > Global.css

My icons are different but you can just edit the colors.


.forum_on {
    color: #fff;
}

.forum_off,
.forum_offlock,
.forum_offlink {
    color: #ccc;
}

.forum_off i {
    color: #ccc;
}

.forum_offlock i:before {
    content: "\f05e";
    color: #ccc;
}

.forum_offlink i:before {
    content: "\f079";
    color: #ccc;
}

(2019-07-05, 04:01 PM)iAndrew Wrote: [ -> ]Look in themes > Majestic  > Global.css

My icons are different but you can just edit the colors.


.forum_on {
    color: #fff;
}

.forum_off,
.forum_offlock,
.forum_offlink {
    color: #ccc;
}

.forum_off i {
    color: #ccc;
}

.forum_offlock i:before {
    content: "\f05e";
    color: #ccc;
}

.forum_offlink i:before {
    content: "\f079";
    color: #ccc;
}


My bad. My theme is Emerald not Majestic..