MyBB Community Forums

Full Version: margin-bottom: 0px; isn't working?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I want to remove the blank space that separates the container from the top and bottom. I checked the forums and added
margin-top: 0px;
margin-bottom: 0px;
to the Extra CSS of my Body. It worked for the top, but there was still space at the bottom.

I figured it might be because the container is shorter than the space in my browser, so I added a bunch of forums and categories to make it longer.

Still - I have space in the bottom.

Fix? :\
You probably just made a small mistake. URL?
My forum is completely messed up.
I tried to delete a thread a day ago and it says:
"Authorisation code mismatch. Are you accessing this function correctly? Please go back and try again."
Then when I try to enter the thread it says it doesn't exist though it's there.

Anyway:
http://tapud.quotaless.com/forums/
http://community.mybboard.net/thread-28222.html

Fix for your problem however you should just upgrade to MyBB 1.4 instead.
I did upgrade to 1.4
less than a week ago.
Bump ;\
Help?
Add "padding: 0;" to the body selector. That will remove all padding put in by the browser.
CSS is cascading effect. That means if you at the top of your stylesheet you define margin:0 but later on define it as 10px then the 10 will be placed.

I suggest you add some border: 1px solid #ff000 to some of the definitions in css to see which one has the margin or padding.