Now, where ".ficons_4" - 4 represents the forum id #. Where "content: "\f086";" f086 represents the font awesome icon number.
Search https://fontawesome.com/ for icons you want to use. Every icon will have a 4-digit unicode to copy and add to your global.css.
Create a new entry for every forum ID you want to change, ideally keeping them in numerical order or it can get out of hand to keep track of. Then replace the "f086" with the unicode of the fontawesome icon you wish to use.
(01-01-2020, 07:42 PM)Mastersly Wrote: Can i add my own icons? By url?
You can, but most of the themes these days are made with the intent to use exclusively Font Awesome. Looking into it, it was considerably more work to do so, so I stuck with Font Awesome.
The 'icons' ar really unicode text characters, invented to help add images to Tweets but keep tweet lengths short. They kinda took off and have been used elsewhere because they're not resource intensive. By using the unicode (4-digit text), you're telling it what to use. Now, a lot of MyBB themes were designed around Font Awesome version 4, and a lot of icons weren't released until Font Awesome Version 5. That MIGHT be an issue, but not a guarantee.
By using the below, you're telling MyBB: Use Font Awesome icon f4ab as the forum icon for the Forum with ID of 25.
.ficons_25 i:before {
content: "\f4ab";
}
I am unable to get to FontAwesome from work, but if you wanted, I can take a look for you when I get home if you wanted to temporarily bump up my account permissions on your site.