MyBB Community Forums

Full Version: New theme - Forum Icons aren't showing?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I just installed Dark Fusion on my forum, but now the forum icons aren't showing.

On my old theme, they show, but not my new one
What are you using to show the Forum Icons?

Probably your new theme's templates don't have the forum icons code in them.
(2013-02-11, 12:58 AM)Irreligious Wrote: [ -> ]What are you using to show the Forum Icons?

Probably your new theme's templates don't have the forum icons code in them.

I am using Forum Icons by labrocca
You have to do this changes in your new theme's templates:

Quote:forumbit_depth1_cat
Find <td class="thead" colspan="5">
Change to <td class="thead" colspan="6">

Find <td class="tcat" colspan="2">
Change to <td class="tcat" colspan="3">

forumbit_depth2_forum
Find <td class="{$bgcolor}" valign="top">
Before it add
<td class="{$bgcolor}" align="center" valign="top" width="1"><img src="uploads/ficons/{$forum['ficon']}" alt="{$forum['name']}" /></td>

forumdisplay_subforums
Find colspan="5"
Change to colspan="6"

Find <td class="tcat" width="2%">&nbsp;</td>
After add <td class="tcat" width="2%">&nbsp;</td> (yes it's twice)

forumbit_depth2_cat
Find <td class="{$bgcolor}" valign="top">
Before it add
<td class="{$bgcolor}" align="center" valign="top" width="1"><img src="uploads/ficons/{$forum['ficon']}" alt="{$forum['name']}" /></td>

http://www.mybbcentral.com/thread-7629.html
(2013-02-11, 01:08 AM)Irreligious Wrote: [ -> ]You have to do this changes in your new theme's templates:

Quote:forumbit_depth1_cat
Find <td class="thead" colspan="5">
Change to <td class="thead" colspan="6">

Find <td class="tcat" colspan="2">
Change to <td class="tcat" colspan="3">

forumbit_depth2_forum
Find <td class="{$bgcolor}" valign="top">
Before it add
<td class="{$bgcolor}" align="center" valign="top" width="1"><img src="uploads/ficons/{$forum['ficon']}" alt="{$forum['name']}" /></td>

forumdisplay_subforums
Find colspan="5"
Change to colspan="6"

Find <td class="tcat" width="2%">&nbsp;</td>
After add <td class="tcat" width="2%">&nbsp;</td> (yes it's twice)

forumbit_depth2_cat
Find <td class="{$bgcolor}" valign="top">
Before it add
<td class="{$bgcolor}" align="center" valign="top" width="1"><img src="uploads/ficons/{$forum['ficon']}" alt="{$forum['name']}" /></td>

http://www.mybbcentral.com/thread-7629.html

Wow, thank you so much!