XF 2.3 How to add images instead of sub node icons ? Read / unread both.

Deepblue

Member
Hello,

I'am on Xenforo v2.3 and i would like to put images to sub nodes read and unread area instead of font awesome bubble chat icon stuff.

I mean just 2 different images to all sub nodes one for read one for unread. I don't want different images for each node indivually.

For this i should add what to where exactly ?

Thanks.
 

Attachments

  • Screenshot_9.webp
    Screenshot_9.webp
    47.1 KB · Views: 21
Try in template extra.less

Code:
//NODE ICONS

.node .node-icon i
{
    &:before
    {
        /.m-faContent(@fa-var-coffee-pot);/
        .m-faContent(@fa-var-coffee-pot);
        width: 100%;
    }
    svg
    {
        display: none;
    }
}
This is the right time to ask if I do not want to receive support from FA. I want my icons to stay on my server. What should I do?
 
Back
Top Bottom