MyBB Community Forums

Full Version: help needed
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
For the first one, find ".trow_selected td" and change the background color.

The second one, you'll need to remove a td from the forumbit_depth1_cat template.

<td class="tcat" width="85" align="center" style="white-space: nowrap"><span class="smalltext"><strong>{$lang->forumbit_threads}</strong></span></td>
(2012-09-03, 08:25 PM)Tecca Wrote: [ -> ]For the first one, find ".trow_selected td" and change the background color.

The second one, you'll need to remove a td from the forumbit_depth1_cat template.

<td class="tcat" width="85" align="center" style="white-space: nowrap"><span class="smalltext"><strong>{$lang->forumbit_threads}</strong></span></td>

first one worked just fine thanks Smile
but second one no and i think you mean forumbit_depth1_cat_subforum because that was a sub forum any other thoughts ?
here is my forumbit_depth1_cat_subforum
<tr>
<td class="tcat" colspan="6"><strong>&raquo;&nbsp;&nbsp;<a href="{$forum_url}">{$forum['name']}</a></strong><br /><span class="smalltext">{$forum['description']}</span></td></tr>{$sub_forums}
It'll be depth1_cat because that's how it displays the subforums.

From the picture, it shows "Forums Threads Posts Last Post" in the tcat. Removing one of those td's will fix it, because the colspan would be 4, while the forum below it only has 3 (HM Requests, Posts/Threads, and Last Post).
(2012-09-03, 09:13 PM)Tecca Wrote: [ -> ]It'll be depth1_cat because that's how it displays the subforums.

From the picture, it shows "Forums Threads Posts Last Post" in the tcat. Removing one of those td's will fix it, because the colspan would be 4, while the forum below it only has 3 (HM Requests, Posts/Threads, and Last Post).

can you do it for me ?
here is my forumbit_depth1_cat
<div id="cat_{$forum['fid']}" class="content">
<a href="#" title="Category Contains New Posts"><span class="newpost"></span></a>
<table border="0" cellspacing="{$theme['borderwidth']}" cellpadding="{$theme['tablespace']}" class="tborder">
<thead>
<tr>
<td class="thead" colspan="5">
<div class="expcolimage"><img src="{$theme['imgdir']}/{$expcolimage}" id="cat_{$forum['fid']}_img" class="expander" alt="{$expaltext}" title="{$expaltext}" /></div>
<div style="vertical-align: middle;padding-top:8px;margin-left:72px;"><strong><a href="{$forum_url}">{$forum['name']}</a></strong><br /><div class="smalltext">{$forum['description']}</div></div>
</td>
</tr>
</thead>
<tbody style="{$expdisplay}" id="cat_{$forum['fid']}_e">
<tr>
<td class="tcat" colspan="1"><span class="smalltext"><strong>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{$lang->forumbit_forum}</strong></span></td>
<td class="tcat" width="85" align="left" style="white-space: nowrap"><span class="smalltext"><strong>Stats</strong></span></td>
<td class="tcat" width="200" align="left"><span class="smalltext"><strong>{$lang->forumbit_lastpost}</strong></span></td>
</tr>
{$sub_forums}
</tbody>
</table>

<br /></div>
I'm sorry, I'm having brain farts today... it will be forumdisplay_subforums.
still need help Smile
Is your forumdisplay_subforums default? If so, try this:

<table border="0" cellspacing="{$theme['borderwidth']}" cellpadding="{$theme['tablespace']}" class="tborder">
<tr>
<td class="thead" colspan="5" align="center"><strong>{$lang->sub_forums_in}</strong></td>
</tr>
<tr>
<td class="tcat" colspan="1"><span class="smalltext"><strong>{$lang->forumbit_forum}</strong></span></td>
<td class="tcat" width="85" align="center" style="white-space: nowrap"><span class="smalltext"><strong>Stats</strong></span></td>
<td class="tcat" width="200" align="center"><span class="smalltext"><strong>{$lang->forumbit_lastpost}</strong></span></td>
</tr>
{$forums}
</table>
<br />
(2012-09-03, 10:16 PM)Tecca Wrote: [ -> ]Is your forumdisplay_subforums default? If so, try this:

<table border="0" cellspacing="{$theme['borderwidth']}" cellpadding="{$theme['tablespace']}" class="tborder">
<tr>
<td class="thead" colspan="5" align="center"><strong>{$lang->sub_forums_in}</strong></td>
</tr>
<tr>
<td class="tcat" colspan="1"><span class="smalltext"><strong>{$lang->forumbit_forum}</strong></span></td>
<td class="tcat" width="85" align="center" style="white-space: nowrap"><span class="smalltext"><strong>Stats</strong></span></td>
<td class="tcat" width="200" align="center"><span class="smalltext"><strong>{$lang->forumbit_lastpost}</strong></span></td>
</tr>
{$forums}
</table>
<br />
nope it is not i tried it tho and it is not working any other thoughts?
Can you post it here? It would be a lot easier with a link though, if possible.
Pages: 1 2