0

I have a web page and i have built a tabbed content area x 3. On the top there is a large white space and on the bottom there is a small white space. I am able to see there is a margin top of 100px, but when i change this to 0px, there is still a small white gap at the top. The bottom always shows a small white space. How do i remove this?

This is the page i am referring to:Page with white space on top and bottom

Matt Godwin
  • 23
  • 2
  • 11

1 Answers1

1

Looking at the given page if you add/refactor the following styles with margin: 0; it will fix your problem:

.z-width960 #page {
    margin: 0 auto;
}

h1 {
    margin: 0;
}

.parallax {
    min-height: 100vh;
}
Cory Kleiser
  • 1,969
  • 2
  • 13
  • 26