Limited Support
Our support team is currently on holiday from December 25, 2025 to January 7, 2026, and replies may be delayed during this period.
We appreciate your patience and understanding while our team is away. Thank you for being part of the wpForo community!
Merry Christmas and Happy Holidays! 🎄
Is there a way I can change a user's badge to something other than a fontawesome icon? Custom png, or another icon of my choosing? Thank you!
you can replace the fontawesome icon with css "background"
Example i replace your half-star here in the forum with garfield 😉Â
Video = https://www.screencast.com/t/zeXVcZlDw8
search for the code with the browser inspector
you will find this
.fa-star-half::before {
content: "\f089";
}
the replace code looks like
.fa-star-half::before {
content: "";
background: url(/wp-content/uploads/wpforo/avatars/garfield_4.jpg);
background-size: 30px;
background-repeat: no-repeat;
width: 30px;
height: 30px;
left: 0;
position: absolute;
margin-top: -20px;
margin-left: 35px;
}
add your code to custom css
Dashboard > Forums > Settings > Style (custom css)
Â