MyBB Community Forums

Full Version: Remove this space....
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
How can i remove this space above the header?

[Image: gap.gif]
in body css tag add margin: 0 and padding :0
is the body tag in the theme additional css?
Admin CP > Modify Theme > *Your Theme* > Body

Change the line
margin: 10px;
to
margin: 0 10px 10px 10px;
all i have in the "Body (Customized in this style)" section is:

text-align: center; /* IE 5 fix */
line-height: 1.4

so i added

margin: 0 10px 10px 10px;

to it bit it only seemed to push the side images 10px outwards.
Ah some mixing up is going on hereToungue

The default content of Body (Customized in this style) are what willow have, there is no margin there by default.
To remove the top gap, add to the Extra CSS Attributes of Body (Customized in this style) the following

margin-top:0;
Also add a semi-column ( ; ) after
line-height: 1.4
there in the same extra css attributed, that's a bug i guess.
excelent, thanks!