MyBB Community Forums

Full Version: More FontAwesome Forum Icons + MyTabs ?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello MyBB Community,

I just wanted to ask how I could get more forum icons with FontAwesome.

Right now there are 7 lines of code in my global.css
I tried to add more but it didn't do anything.

[Image: GjeTJhC.png]

As you can see, there are custom icons at the top and then it changes to the chat bubble (If the content hasn't been changed it goes to the chat bubble, it is a code in forum_depth_cat2)

So whenever I try adding more code and changing the number for that line of code. It won't change. At all.

[Image: 539651bad1716b1e85fe051a01904ac5.png]
the 4 in .ficons_4 refers to the fid of that forum.. you need to add codes based on the fid.. for instance, add .ficons_9 for the "Introductions" forum..

you can get the fid by going into ACP >> Forums & Posts >> and hover the mouse on a forum name, you can see the fid at the end of the link displayed on the status bar of the browser like this

http://yoursite.com/admin/index.php?modu...management&fid=9
(2016-01-14, 06:35 AM)mmadhankumar Wrote: [ -> ]the 4 in .ficons_4 refers to the fid of that forum.. you need to add codes based on the fid.. for instance, add .ficons_9 for the "Introductions" forum..

you can get the fid by going into ACP >> Forums & Posts >> and hover the mouse on a forum name, you can see the fid at the end of the link displayed on the status bar of the browser like this

http://yoursite.com/admin/index.php?modu...management&fid=9

/solved

Thanks!