How to eliminate space above the header?

I want the header of this website http://nelsonnaibert.com.br/ to be at the very top of the page. I’ve tried everything I could, looked for answers in every forum but nothing’s working.

Is there anyone who could help me with that?

Thanks a lot!

Hi laurabd. Welcome to the forums. :slight_smile:

The problem is here:

.header h1, .header h5 {
font-size: 48px;
text-transform: uppercase;
margin: [COLOR="#FF0000"]10px[/COLOR] 0 0 0;
}

That margin is pushing out the top of the container, because of “margin collapse”.

There are various ways to stop this happening. The easiest thing in this case would be simply to remove that top margin on the <h1>.

Seems that I’ve tried everything but that. Thanks a lot, ralph.m!

You’re welcome. :slight_smile: