
MyBB default icons are very good and optimized but what if you want a unique look for your forum ie “Alternative Icons for MyBB Forum Theme and Font Awesome based icons”. You have only one option that is a google search. Today I will tell you how to get alternative icons for your MyBB Theme
The first and simple option is to go to MyBB mods and search there. You will find lots of forum icons that you can use on your sites for your forum for free. You can find them here.

Second, you have the option to use font-awesome icons that are designed for twitter bootstrap. I will tell you how you can use them on your forums, they are very beautiful and you will not need any photoshop knowledge to use them. They can add a powerful interface to your site and can give your forum a different look. The latest set of font-awesome icons contains quite a huge number of icons. So how to add these icons to your forum?
The easiest way to do this is to use the CDN version of the Font Awesome icons where you just add a simple line of code.
Go to your Admin CP and your theme template. You can use the get latest version CDN version from CDNJS or from the official Font Awesome Website
Open headerinclude template and add the following line at top of your headerinclude
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.13.1/js/all.min.js" rel="stylesheet">
Save your headerinclude template after adding the above fontawesome CDN to your site.
Now you can use fontawesome icons anywhere on your website. To use them just go to this page and select which icon you want to use. After you select the icon you need to use in this way
<i class="fas icon-name"></i>
You need to copy the above code and replace it with icon-name. For example you want to use coffee icon than its name is fas-coffee
So above code will be
<i class="fas fa-coffee"></i>
This is how you will be able to use new icons to your site and give your forum a new look.
I hope you like this tutorial and enjoy new icons for your MyBB Forum.