Nordgard Member Jul 18, 2024 #1 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
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
Mr Lucky Well-known member Jul 18, 2024 #2 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: [cXF] Node icons with image Nov 9, 2019 DIY tutorial to change default FA node icons with image Last edited: Jul 18, 2024 Upvote 0 Downvote
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: [cXF] Node icons with image Nov 9, 2019 DIY tutorial to change default FA node icons with image
Mr Lucky Well-known member Jul 18, 2024 #4 Nordgard said: Thank you so very much Click to expand... BTW I edited the first code (which just removes icon) as I think there was an error Upvote 0 Downvote
Nordgard said: Thank you so very much Click to expand... BTW I edited the first code (which just removes icon) as I think there was an error