@josef said in Which icons from https://fontawesome.com can use NodeBB?:
OK, so to sum up:
free Version 5 Only solid design works!
The icon should be:For example this: far fa-pencil-ruler will not work, but this fas fa-pencil-ruler will work.
can you also try different font weights? It might work. I am not sure how it works, but thanks to @phenomlab , we have these changes for vote icons:
// Change the icon for votes span.votes { .fa-chevron-up:before { content: "\f164"; font-weight: 400; } .upvoted .fa-chevron-up:before { content: "\f164"; font-weight: 900; } .fa-chevron-down:before { content: "\f165"; font-weight: 400; } .downvoted .fa-chevron-down:before { content: "\f165"; font-weight: 900; } }Screen Shot 2022-06-29 at 9.10.19 PM.png
as you can see, font-weight changes the icon between
solid and regular.