MyBB Community Forums

Full Version: Footer goes narrow on forums
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Square theme (called Cubed on my site).

I noticed a white box above my footer on the homepage. So I went to the templates and found at the top of the footer

<div>
</div>

So I deleted them and checked the footer. The white box above the footer was gone. But then, later, when I clicked on a forum and scrolled all the way down, I found my footer had been narrowed to the width of the content within.

I don't think I made any other changes. So I put the

<div>
</div>

back into the top of the footer. The white box didn't come back, the footer is still full width on the homepage, and still narrow in the forum pages. I hit hard refresh to check. Yup, still narrow.

What did I do wrong this time?

Test User MyBB!@34

https://theprosestylist.net

Thank you for your time.

Smile
Your index_boardstats template (the table itself) is out of the #content wrapper container, that's the main reason.

Also, your .tborder class in global.css has "width: 100%" property where in the default version of the theme isn't.
there is a problem with div end tags
footer template is supposed to have 2 closing div tags at the beginning
</div>
</div>

look at the source code of index page , forum display & a thread page
search for <div> & </div> using browser search & check the counts
Thank you both. It's resolved.

Smile