-4

There is a space in between the two divs at the bottom of my website. How can I get them to get back together using CSS? The source code is here.

ca1c
  • 1,111
  • 10
  • 23
  • edit your question and hit CTRL + M and post all of your code in the snip box that opens – mlegg Dec 16 '16 at 01:19
  • 3
    Your last H1 (Newsletter Sign Up) needs its top margin set to 0 or its parent div set to `overflow:auto;` or `overflow:hidden;` – Tims Dec 16 '16 at 01:23

1 Answers1

0

it's the margin for <h1>

Newsletter Sign Up

h1 is not defined in the CSS. So, it defaults to browser defaults.

As of now <h1> has a top/bottom margin of 32.160px

try adding the following to your CSS

h1 {margin: 0 auto}