XF 2.3 Remove the FA icons

Nordgard

Member
It's been a while since I had to change things on my forum, but after the new upgrade I had to make some changes
But this one, how do I remove this?
I don't need two icons, and only want the Christmas tree


Skjermbilde 2024-07-18 kl. 11.30.07.webp
 
In extra.less I use this to remove existing

Code:
.node .node-icon svg {
    display: none;
}

I use this to remove and replace with another icon

Code:
.node .node-icon i
{
    &:before
    {
    
        .m-faContent(@fa-var-coffee-pot);
        width: 100%;
    }
    svg
    {
        display: none;
    }
}

Or to use an image:

 
Last edited:
Back
Top Bottom