MyBB Community Forums

Full Version: Removing default forum icons?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
Hello, I find this quite unattractive and was wondering if it's possible to remove the no new posts/new posts/hot forum icons from appearing on the forums page.
HackForums has it done successfully, I notice they only have their own custom forum icons.

Is it something to do with the theme template?

I'd like this grey square removed -

[Image: 92056506.png]

Any assistance given will be appreciated, thank you.
After visiting the templates section in the control panel select your theme. From there click the forumbit templates and choose the forumbit_depth2_forum template. Then:

find and remove:
<td class="{$bgcolor}" align="center" 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>
(2011-11-26, 03:45 AM)Jason L. Wrote: [ -> ]After visiting the templates section in the control panel select your theme. From there click the forumbit templates and choose the forumbit_depth2_forum template. Then:

find and remove:
<td class="{$bgcolor}" align="center" 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>

Thanks Jason I appreciate that although it's now removed the custom forum icons I had added.
I'd like to keep my custom forum icons through my forum icon plugin but remove the default ones.
Thank you!
(2011-11-26, 03:52 AM)Alternate Wrote: [ -> ]
(2011-11-26, 03:45 AM)Jason L. Wrote: [ -> ]After visiting the templates section in the control panel select your theme. From there click the forumbit templates and choose the forumbit_depth2_forum template. Then:

find and remove:

Thanks Jason I appreciate that although it's now removed the custom forum icons I had added.
I'd like to keep my custom forum icons through my forum icon plugin but remove the default ones.
Thank you!

Which plugin are you using? Smile
(2011-11-26, 03:54 AM)Jason L. Wrote: [ -> ]
(2011-11-26, 03:52 AM)Alternate Wrote: [ -> ]
(2011-11-26, 03:45 AM)Jason L. Wrote: [ -> ]After visiting the templates section in the control panel select your theme. From there click the forumbit templates and choose the forumbit_depth2_forum template. Then:

find and remove:

Thanks Jason I appreciate that although it's now removed the custom forum icons I had added.
I'd like to keep my custom forum icons through my forum icon plugin but remove the default ones.
Thank you!

Which plugin are you using? Smile

Labrocca's Ficons.

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

Smile
Instead of removing that code try replacing it with:

<td class="{$bgcolor}" align="center" valign="top" width="1"><img src="uploads/ficons/{$forum['ficon']}" alt="{$forum['name']}" /></td>
Works like a charm, much appreciation Jason! Smile
Reputation will be given, marking thread as Solved.
(2011-11-26, 04:05 AM)Alternate Wrote: [ -> ]Works like a charm, much appreciation Jason! Smile
Reputation will be given, marking thread as Solved.

No problem, glad I can help Smile.
One more thing if you're willing to help, now I've done that it's messed up the layout a little bit-

http://i.imgur.com/4M3y0.png

If you look at where the forum statistics are, they're now over-lapping.
Thanks.
Find:
<td class="{$bgcolor}" valign="top" align="right" style="white-space: nowrap">{$lastpost}</td>

Replace with:
<td class="{$bgcolor}" valign="top" align="right" style="white-space: nowrap" width="300px">{$lastpost}</td>

Then in global.css:

find: .test

add in:
width: 120px;
Pages: 1 2