Trying to remove white space between nav bar and content?

This is a CSS issue. Adding this to the bottom of your page will help.

<style>
  body main#primary {
      background: #fff;
      padding-top: 10px;
  }

  main#primary .wrapper {
      padding: 0px;
      box-sizing: border-box;
  }
</style>