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! 🎄
Please help me 😊
Inspect image in browser DevTools. If it's just a plain png - you can replace image on your server: just upload your new image with old name.
If you are not familiar with editing templates, the way is -> changing CSS (but it's a kind of "dirty hack"). Something like this:
.fas.fa-pen-square {
background: url('YOUR_IMAGE_FULL_PATH') no-repeat;
}
.fas.fa-pen-square::before {
content: "";
}
You should write mo specific selector to not affect the others icons of the same type. And I'm not sure about icon code `fa-pen-square`, this code only demonstrates the idea.Â
You shouldn't put anything into `content`