Hey is it possible to display images next to forums instead of icons as the icons are very limited....Like a code to replace Font-awesome icons with images?
Like the image provided?
Hi Denzy,
I'm really sorry but it's not possible. You can change icons using other Font-Awesome Icons but you can't change it to an image HTML tag, it only works with Font-Awesome icon classes.
I know the subject is already very old, but I found a solution that works.
Upload the desired image via the media manager and copy the URL.
enter the following CSS code in the CSS Customer Code field:
For the active icon:
#wpforo #wpforo-wrap .wpf-unread-forum .wpforo-forum-icon i, #wpforo #wpforo-wrap .wpforo-subforum .wpf-unread-forum i {
color: transparent!important;
width:30px;
height:26px;
background:url( https://www.yourdomain.club/wp-content/uploads/2019/01/youricon.png )
}
and for the inactive icon:
.wpfcl-0 {
color: transparent!important;
width:30px;
height:26px;
background:url( https://www.yourdomain.club/wp-content/uploads/2019/01/youricon.png )
}
Adjust the url, width and height to the size of your icon. the color is transparent now.
Hi Alisia
Thank you very much for sharing this code.
Font Awesome can be quite heavy on a website, so it's nice to have the option to replace FA icons with images. I've been meaning to spend some time using CSS to replace all FA icons in wpForo with optimized images, as I think it will make a big difference in page speed. I've managed to remove FA from my entire website except for wpForo.