Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS [Solved] White space left in the page depending how elements are positioned Reply To: [Solved] White space left in the page depending how elements are positioned

#184703
Paulie_D
Member

#navigation {
position: relative;
top: -350px;
}

You really shouldn’t need to be moving elements like this except for specific effects.

If you are using this to generally position things you need to review your layout methods.

Margins & Padding should, generally, be used for spacing.

As for the navigation divs, try putting them inside the header div….then you don’t need to position it like that.

Etc.