MyBB Community Forums

Full Version: Invisible Sidebar or? Help please!
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
There is a big gap in my forums it was fine earlier but I cant seem to figure it out, I deactivated all side bar related plugins and nothing changed?

It is only on the right of the forums, when I add a sidebar, the space is still there and the sidebar just sits next to the big space?

Ill post a picture soon, my forums down at the moment because webhost is under maintenance now.

Screenshot Here

Any idea to fix? thanks alot!
Added a screenshot with the big space on the right, really need help. Thanks
If it's on index, check the index template for suspicious code and post it here. If on other, tell which plugins you tried and post template of the script where the empty space is.
This is all that is in the Index page
<html>
<head>
<title>{$mybb->settings['bbname']}</title>
{$headerinclude}
<script type="text/javascript">
<!--
	lang.no_new_posts = "{$lang->no_new_posts}";
	lang.click_mark_read = "{$lang->click_mark_read}";
// -->
</script>
</head>
<body>
{$header}
{$IC_TopThreadStarters_H}
{$announcement}
<table width="100%"  border="0">
  <tr>
    <td width="75%" valign="top">{$forums}</td>
    <td width="25%" valign="top">{$top_posters}</td>
  </tr>
</table>

{$IC_TopThreadStarters_F}
{$boardstats}{$indads}

<br style="clear: both" />
{$footer}
</body>
</html>

All the plugins I tried then it happened.
IC Top Thread Starters
Advanced Sidebox
Create New Threads From Index
Count Threads
Daily Sponsor Bar
Advanced ads on index
Top posters sidebar
Recent threads sidebar
Sidebar


Thank you!
To remove gap, change

<table width="100%"  border="0">
  <tr>
    <td width="75%" valign="top">{$forums}</td>
    <td width="25%" valign="top">{$top_posters}</td>
  </tr>
</table>

to:

{$forums}
Thanks so much, it worked!

Have any idea what/what plugin caused it to do this and add that code?
Thanks once again!
Well, if you look at the code I told you to replace, there is {$top_posters} so I guess "Top posters sidebar".