MyBB Community Forums

Full Version: Remove this part of the bar
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
I'd like to remove this part of my forums bar, how will I get around it?

[Image: barzmb.png]
No idea what that is, URL?
No, I think there's supposed to be some kind of icon, but I dont want that.
(2011-03-21, 08:41 PM)ink Wrote: [ -> ]No, I think there's supposed to be some kind of icon, but I dont want that.

Go to:

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

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

Next:

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

Next template:

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

Find <td class="tcat" width="2%">&nbsp;</td>
Remove ONE, there are two.

And the final template edit:

forumbit_depth2_cat
Find <td class="{$bgcolor}" align="center" valign="top" width="1"><img src="uploads/ficons/{$forum['ficon']}" alt="{$forum['name']}" /></td>
Remove it, and you're done.
(2011-03-22, 12:02 AM)The Elite Wrote: [ -> ]And the final template edit:

forumbit_depth2_cat
Find <td class="{$bgcolor}" align="center" valign="top" width="1"><img src="uploads/ficons/{$forum['ficon']}" alt="{$forum['name']}" /></td>
Remove it, and you're done.

This wasn't there, and now my board looks really weird.

[Image: bark.png]
Can you please give us your forum's URL ?
http://www.fpsarea.com/

Please tell me when you're done checking it since I'm keeping it closed when developing it
Do you want to completely remove that column ?

Or if you want to show an image replacing the "My Forum" text, then upload an image forum2.png in ./uploads/ficons/ folder.
Only the part marked with a red circle in the 1st picture.
OK, Go to: ACP > Templates > Forumbit Templates > forumbit_depth2_forum > find and remove;
<td class="trow1" align="center" valign="top" width="1"><img src="uploads/ficons/" alt="My Forum" /></td>

Now Open forumbit_depth1_cat template and find;
<td class="thead" colspan="5">
and change 5 to 4, like this;
<td class="thead" colspan="4">
Pages: 1 2