MyBB Community Forums

Full Version: Container Question
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello everyone.

Maybe someone can help me with that:
http://www.nkotbmentalshot.com/forums/index.php

I want the header (container) to begin on the very top. I've tried a few things with "margin" but it didn't work.

Would be nice if someone could help me out with that.
Thanks in advance.

Nicky
You could use CSS position.

http://www.tizag.com/cssT/position.php
Thank you for the help. I've fixed it with the following code:

#container {
position: absolute; 
top: 0px;
left: 50%;
margin-left: -400px;
}