MyBB Subforums messed up on ProBlue theme

John1

Paragon
Joined
Aug 29, 2009
Messages
1,629
Reaction score
0
FP$
6
I have tried checking the forumdisplay_subforums, but all the code seems to be as normal (I compared it with another themes template).

Code:
Code:
<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" width="2%">&nbsp;</td>
<td class="tcat" width="59%"><span class="smalltext"><strong>{$lang->forumbit_forum}</strong></span></td>
<td class="tcat" width="7%" align="center" style="white-space: nowrap"><span class="smalltext"><strong>{$lang->forumbit_threads}</strong></span></td>
<td class="tcat" width="7%" align="center" style="white-space: nowrap"><span class="smalltext"><strong>{$lang->forumbit_posts}</strong></span></td>
<td class="tcat" width="15%" align="center"><span class="smalltext"><strong>{$lang->forumbit_lastpost}</strong></span></td>
</tr>
{$forums}
</table>
<br />

Seems this is the problem:
Code:
<td class="{$bgcolor}" align="center" valign="top" width="1"><img src="{$theme['imgdir']}/ficons/icon_{$forum['fid']}.png" title="{$forum['name']}"/></td>

That above code is in the forumbit_depth2_forum template. When I take that out it goes to normal which is great, but now the index page messes up like above!

So it seems if I leave it in the subforums mess up, leave it out the index page messes up.

Here is a screenshot!: http://img838.imageshack.us/img838/7360/errord.jpg
 
I would say try this.

Code:
<td class="{$bgcolor}" align="center" valign="top" width="1"><img src="{$theme['imgdir']}/ficons/icon_{$forum['fid']}.png" alt="{$forum['name']}" title="{$forum['name']}" class="ajax_mark_read" id="mark_read_{$forum['fid']}"/></td>

If that doesn't work post your
forumbit_depth2_cat
forumbit_depth1_cat
forumbit_depth1_cat_subforum
 
Got this sorted 🙂

My only problem is now that when I go to click into the quick reply box it opens up a new tab and directs me to a certain forum. I added some links and images to the right hand side of the quick reply box and shortened the textbox to 50%... The ProBlue template has sweetTitles on but I took out the javascript call in the header file and it stopped, but now when I click into the quick reply box I can't write anything because it directs me to a forum on my board.
 
Back
Top Bottom