MyBB Community Forums

Full Version: How to set the topargin to 0?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello.

This is my first post in here and it's also the first time I worked with mybb. I made my way through the template system almost OK, but I got stuck on something.

I need my page to have a top margin of 0. As you can see on my my forum there is a 5-6 pixels space in the header and I cannot get rid of it.

If I was in HTML I'd put body topmargin="0", but here I cannot find where to make the change. Tried to delete some padding code, but no chance to solve this. Thank you in advance for any ideas you might offer me
You use css. In the EXTRA ATTRIBUTES for body add this line

margin-top: 0px;
It worked. Thank you. Smile