I posted a bunch of images of examples that I thought would be useful, however the anti-spam tool this forum is using chose to delete my post. That being said, @robkk , these options:
- Icons for Subcategories that help to differentiate between subcategories – simple css
- “New” icons for new posts – show icon from date of creation.
- “Sticky” icons for stickied posts – simple css
- “Hot” icons for posts that are popular -show the label when a reply level hits
Would be tremendously useful for me, and though you claim they would be easy to implement, have thwarted me so far. I tried to create a post about it, however apparently the excess of example links deemed it un-postable as dictated by the anti-spam tool.
I’ve searched for the answer and found this:
.bbp-forum-34 i:before {
content: "\e112"; /* glyphicons_ */
}
but I’m trying to complete using Font Awesome icons, so I’d imagine I’d have to try:
.bbp-forum-1168 i:before {
font-family: FontAwesome;
content: "\f095";
}
however, I have no idea where to pass this into. And I’m also not sure if this is appropriately how you use Font Awesome as read by CSS.