Forums

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

Home Forums CSS [Solved] How do I remove this gap in my design? Reply To: [Solved] How do I remove this gap in my design?

#192372
Paulie_D
Member

You have padding-top of 70px on the body presumably so that the fixed header doesn’t overlap the content.

But the navbar is only 50px tall…so there’s a gap of 20px;

body {
  /* min-height: 2000px; Not really required AFAICT */
  padding-top: 50px; /* adjust to this */
}