MyBB Community Forums

Full Version: Altering tip top of header
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Ok maybe I am missing because I'm tired, but where is the tip top of the header where the 8px space is?

[attachment=14411]

Notice the blue arrows pointing to it.

I need to get rid of that on the header and footer so I can finish my style port. I thought it was a margin with the container or padding with it but its not. So any help much appreciated.

I do have to say though, I love how variables are used for coding a new mod for MyBB using {$variable} that makes them stand out.

Cheers
Steve
Default doesn't have any except for the padding in the container.

#container {
width: 95%;
background: #ffffff;
border: 0px solid #10270B;
color: #000000;
margin: auto auto;
padding: 20px;
text-align: left; /* IE 5 fix */
}

Just make the padding zero.
Yeah I already removed that and it is still there.
I don't have any so I don't know what you're doing wrong
Maybe I need to change the margin to margin: 0px 0px 0px 0px; and see if that works.
Got it, had to add:
margin: 0px;
padding: 0px;

To the body class.