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
September 25, 2014 at 4:17 am
#184703
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.