-8

Why is at my Website link between the navigation elements a space and why is a whitebar under the header image?

marginand paddingis set to 0 everywhere i thought. No plan...

Tekkzz
  • 630
  • 7
  • 25

3 Answers3

0

try to set "line-height: 0px" in your CSS files for that element

danielg44k
  • 55
  • 4
0

Put your image inside a div

<div style="height:350px; width:800px;"><img src="/assets/header.png"></div>
-1

for fixing the navigation:

nav li {
    padding: 0px;
}

The second white space, I believe, is caused by the header (h1 tag)

Wilkommen