MyBB Community Forums

Full Version: Forum Icons
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
I am looking to have just the plugin ficons, So custom images show up on the page instead of both the themes icons and the ficons. Can someone tell my how this is done. For example hackforums.net has it to were there is custom icons and no icon next to those telling people whether there is new posts or not.

Plugin = http://www.mybbcentral.com/thread-2676.html
My website = http://www.ForumKorner.com

Thanks
In forumbit_depth2_forum and forumbit_depth2_cat find and delete:
<td class="{$bgcolor}" align="center" valign="top" width="1"><img src="{$theme['imgdir']}/{$lightbulb['folder']}.gif" alt="{$lightbulb['altonoff']}" title="{$lightbulb['altonoff']}" class="ajax_mark_read" id="mark_read_{$forum['fid']}" /></td>


In forumbit_depth1_cat find:
<td class="tcat" colspan="3">

Replace with:
<td class="tcat" colspan="2">


In forumdisplay_subforums find:
<td class="tcat" width="2%">&nbsp;</td><td class="tcat" width="2%">&nbsp;</td> 

Replace with:
<td class="tcat" width="2%">&nbsp;</td>

I think he is not asking to remove the Icons column Toungue He want to add Forum Icons along with the ON Off images.
AJS, Was 100% correct. And it worked perfectly thank you so much! But now I need to remove one more part of the forum which is this. How do I do it? Thanks again!

[Image: 85838515.png]
Find and remove the following from the index template:
<dl class="forum_legend smalltext">
	<dt><img src="{$theme['imgdir']}/on.gif" alt="{$lang->new_posts}" title="{$lang->new_posts}" style="vertical-align: middle; padding-bottom: 4px;" /></dt>
	<dd>{$lang->new_posts}</dd>

	<dt><img src="{$theme['imgdir']}/off.gif" alt="{$lang->no_new_posts}" title="{$lang->no_new_posts}" style="vertical-align: middle; padding-bottom: 4px;" /></dt>
	<dd>{$lang->no_new_posts}</dd>

	<dt><img src="{$theme['imgdir']}/offlock.gif" alt="{$lang->forum_locked}" title="{$lang->forum_locked}" style="vertical-align: middle;" /></dt>
	<dd>{$lang->forum_locked}</dd>
</dl>
Ok that worked, But now there is a huge empty space there. Is there anyway to remove that? I do not see any <br /> Or anything like that... :/

Thanks!
That's in the footer template. Just see <br /> at the top of footer template. Remove that.
I am not seeing anything in the footer template that is changing the three spaces... :/
Find and remove the following:
<br style="clear: both">

I think this can be found either in the bottom of your index_boardstats template or another template in the Index Templates category.
Its in the index template and i already tried it and it did not change anything that i could tell anyways. :/
I have managed to find 2 of the 4 spaces. Any other ideas on where just one more is? Thanks
Pages: 1 2