White space at top of page

I am having an issue with a space showing above my body tag and I can’t find where in my code it is at. It is the white space above the top dark bar.

There can be several reasons. Have you set your margins/padding for both the html and body elements to 0? Add this to the top of your stylesheet:

* {
margin: 0px;
padding: 0px;
}

(BTW: "Stupid question"is not such a useful topic headline :wink:)

I finally figured it out. I am trying to build the new site using the CSS Grid and had a few things out of place.