Viewing 1 replies (of 1 total)
  • Looks like the margin-top here:

    body .site {
        box-shadow: 0 2px 6px rgba(100, 100, 100, 0.3);
        margin-bottom: 3.42857rem;
        margin-top: 3.42857rem;
        padding: 0 2.85714rem;
    }

    But you need to put that in a media query to work on a larger screen.

    @media screen and (min-width: 600px) {
       body .site {
        margin-top: 3.42857rem;
       }
    }

    Change that measure.

Viewing 1 replies (of 1 total)
  • The topic ‘erase space above header’ is closed to new replies.