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.
Oct 23, 2020 8:22 pm
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!
2 Replies
Oct 24, 2020 6:14 am
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)
Â