MyBB Community Forums

Full Version: remove this please see it
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello fellows
i have some problem with this
I want to remove this as in this picture
[Image: 14b4fd.jpg]
Would you please guide me how can i do this?
regards
The first is in "forumbit_depth2_cat" and the later is in "forumbit_depth2_forum" templates respectively.
bro here is my forumbit_depth2_cat code
<tr>
<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>
<td class="{$bgcolor}" valign="top">
<strong><a href="{$forum_url}">{$forum['name']}</a></strong>{$forum_viewers_text}<div class="smalltext">{$forum['description']}{$subforums}</div>
</td>
<td class="{$bgcolor}" valign="top" align="center" style="white-space: nowrap">{$threads}{$unapproved['unapproved_threads']}</td>
<td class="{$bgcolor}" valign="top" align="center" style="white-space: nowrap">{$posts}{$unapproved['unapproved_posts']}</td>
<td class="{$bgcolor}" valign="top" align="right" style="white-space: nowrap">{$lastpost}</td>
</tr>
and here is forumbit_depth2_forum
<tr>
<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>
<td class="{$bgcolor}" valign="top">
<strong><a href="{$forum_url}">{$forum['name']}</a></strong>{$forum_viewers_text}<div class="smalltext">{$forum['description']}{$modlist}{$subforums}</div>
</td>
</tr>

what should i do this? i am unable to do this please
First you remove:

Quote:<a href="{$forum_url}">
and
Quote:</a>
In the forumbit_depth1_cat template...

Find:
<strong><a href="{$forum_url}">{$forum['name']}</a></strong>

Replace with:
<strong>{$forum['name']}</strong>

Find:
<td class="tcat" colspan="2"><span class="smalltext"><strong>{$lang->forumbit_forum}</strong></span></td>

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

thanks it done