Great Idea! I took your solution and added a few lines of CSS to hide the downvote arrow and remove the whitespace.
// Change the icon for votes span.votes { // not voted is outline heart .fa-chevron-up:before { content: "\f08a"; } // upvoted is solid heart .upvoted .fa-chevron-up:before { content: "\f004"; } } // hide the downvote element to remove whitespace a[component="post/downvote"] { display: none; } // reduce margin of post-submenue for alignment .topic .moderator-tools { margin-left: 0px; }Solved Missing many font awesome icons
-
I'm trying to add icons to my categories and it looks like the available icons are very limited.
I'm using 1.17.0.is there a way to import the rest of the icons or specific ones that I would like to use?
-
@torusjkl There is no way to import them to the ACP, but if you download the free version of fontawesome for web (or paid if you have it) you can put them in your nodebb uploads folder and reference the CSS for it. here is a post that may be helpful:
https://community.nodebb.org/topic/15622/fontawesome/9 -
@torusjkl There is no way to import them to the ACP, but if you download the free version of fontawesome for web (or paid if you have it) you can put them in your nodebb uploads folder and reference the CSS for it. here is a post that may be helpful:
https://community.nodebb.org/topic/15622/fontawesome/9 -
@dunlix thanks, I will look into this.
But I just wonder where this restriction comes from.
Why wouldn't it be possible to show all free icons in the ACP?e.g. this one
-
@torusjkl we have an older version of FA, v4. https://fontawesome.com/v4.7.0/icons/
FA5 would break a lot of things, and has a different licensing model.
-
@pitaj I see.
Thanks for the explanation.