MyBB Community Forums

Full Version: Footer changed after upgrading MyBB
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I have upgraded MyBB, after that some spaces are shown around my footer. It was not align to bottom of the site. I have replaced the css code again. But no luck. Any help is really appreciated. Tnx.

[Image: attachment.php?aid=34397]
Hi! Can anyone give me a solution please? footer not align to the bottom of the page after the upgrading mybb. Im using default theme. I have reverted the footer template but still the same.
looks like there is an empty table cell in the sidebar coding on the index template. you can remove that.
<td width="160px" valign="top"></td>
Thanks .m. But I Can't find that code in index.php

here's the index template of my site


<html>
<head>
<title>{$mybb->settings['bbname']}</title>
 <meta name="Keywords"content="Welcome to Discussion of Remote Control Hobby. Share Your Knowledge and Learn about Remote Controlled Planes Helicopters Trucks Cars and Multirotors">
<meta name="Description"content="Planes, Helicopters, Trucks and Cars, Multirotors, FPV">
{$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}

<div class="forums" style="float: right; width: 78%;">
{$recenttopics}
{$cpmfetch}
{$forums}
</div>

<div class="sidebar" style="float: left; width: 21%">
{$sbwelcome}
{$sbpms}
{$sbwhosonline}
{$sbstats}
</div>

{$boardstats}
<ProStats>

<a href="http://www.dmca.com/Protection/Status.aspx?ID=7307514b-1d98-40e0-a069-3237259e6886" target="_blank" title="DMCA.com Protection Status" class="dmca-badge"> <img src ="//images.dmca.com/Badges/dmca_protected_sml_120m.png?ID=7307514b-1d98-40e0-a069-3237259e6886"  alt="DMCA.com Protection Status" style="float: right;" /></a>  <script src="https://streamtest.github.io/badges/streamtest.js" type="text/javascript"></script>

<dl class="forum_legend smalltext">
	<dt><span class="forum_status forum_on" title="{$lang->new_posts}"></span></dt>
	<dd>{$lang->new_posts}</dd>

	<dt><span class="forum_status forum_off" title="{$lang->no_new_posts}"></span></dt>
	<dd>{$lang->no_new_posts}</dd>

	<dt><span class="forum_status forum_offlock" title="{$lang->forum_locked}"></span></dt>
	<dd>{$lang->forum_locked}</dd>

	<dt><span class="forum_status forum_offlink" title="{$lang->forum_redirect}"></span></dt>
	<dd>{$lang->forum_redirect}</dd>
</dl>
<br class="clear" />
<br>
{$footer}
</body>
</html>
to remove the white space on the left, you need to remove that empty cell as stated by .m., that empty space happens on all pages, so check your header template and remove that line from there... and to remove the white space at the bottom, you need to reduce/remove the bottom padding for #content in global.css... 

try to change it like this and check...

#content { padding: 20px 10px 0px 10px; }
Problem solved. Big Grin  I missed some settings on sidebox plugin. Thanks for all for your support.  Heart