Font Awesome based forum icons (ficons) in MyBB - Printable Version +- D&D Forums - MyBB Plugins & Themes (https://developement.design/forum) +-- Forum: MyBB General Discussions (https://developement.design/forum/forumdisplay.php?fid=23) +--- Forum: Tricks & Tutorials (https://developement.design/forum/forumdisplay.php?fid=11) +--- Thread: Font Awesome based forum icons (ficons) in MyBB (/showthread.php?tid=27963) |
Font Awesome based forum icons (ficons) in MyBB - AmazOuz - 09-27-2022 Font Awesome based icons are pretty popular these days and have replaced image based icons. In this tutorial, you will learn about adding Font Awesome based forum icons in MyBB without any plugins. For this tutorial, make sure to have a complete backup before following this tutorial for any theme. Recently I shared a tutorial for GoDark MyBB theme and this tutorial will allow you to add ficons in any theme. Note : This tutorial is intended for advanced MyBB administrators.
Code: <td class="{$bgcolor}" align="center" width="1"><span class="forum_status forum_{$lightbulb['folder']} ajax_mark_read" title="{$lightbulb['altonoff']}" id="mark_read_{$forum['fid']}"></span></td> Replace the above code with this Code: <td class="{$bgcolor}" align="center" valign="center"><div class="forum_status forum_{$lightbulb['folder']} forum_{$forum['fid']} ajax_mark_read" title="{$lightbulb['altonoff']}" id="mark_read_{$forum['fid']}"><i class="fa fa-envelope-open" aria-hidden="true"></i></div></td>
Code: .forum_status {
Hope this helps you add Font Awesome based forum Icons on your MyBB Forums. Source : WallBB (https://community.mybb.com/user-105159.html) |