XF 2.2 Where to find good icon sets?

ekool

Active member
I've been googling the web on where to find good color icon sets. 10 years ago there were many to choose from that were free... now, not so much. I'm thinking icon sets that are .png files with clear backgrounds that can be used for node icons of different categories. Used to be you could find a set of say 500 icons in multiple sizes all over the place. Now it seems all of them are paid.

Does anyone know of any good icon sets that can be used for things like this?

On a separate note, emoji support for different Xenforo icons would be neat.
 
On a separate note, emoji support for different Xenforo icons would be neat.
Do you mean using emoji for your node icons? If so, you can do that by putting something like the below in your extra.less file. In this example the "115" is the node ID that you'd want to change.
Code:
.node {
    &.node--id115, a[href$='.115/'] {
        &.node, &.subNodeLink {
            .node-icon i:before, .fa-comments:before {
                content: "🦥" !important;
            }
        }
    }
}
 
Do you mean using emoji for your node icons? If so, you can do that by putting something like the below in your extra.less file. In this example the "115" is the node ID that you'd want to change.
Code:
.node {
    &.node--id115, a[href$='.115/'] {
        &.node, &.subNodeLink {
            .node-icon i:before, .fa-comments:before {
                content: "🦥" !important;
            }
        }
    }
}
That is very handy, thank you!
 
Top Bottom