I'm a diploma student working on CSS and HTML. My current page is almost done, but I'm stuck on one thing. The Header/nav bar. If I set it to inline, everything lines up nicely, the background image stays where it's supposed to be but there's a gap at the top of the page. Setting it to fixed fixes that but throws off the alignment of parts of the bar and the background image ends up under the header. All related margins are set to 0, and out of desperation I tried enlarging the bar, it doesn't get rid of the space. Please could someone tell me how to fix this? Here's my code:
body {
margin: 0;
padding: 0;
width: 100%;
background: url("images/background.jpg") no-repeat center center fixed;
background-size: cover;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-color: rgb(153,145,122);
background: -webkit-linear-gradient(left, aqua , mediumslateblue);
background: -o-linear-gradient(right, aqua, mediumslateblue);
background: -moz-linear-gradient(right, aqua, mediumslateblue);
background: linear-gradient(to right, aqua , mediumslateblue);
font: 1em Verdana, sans-serif;
}
header{
position: inline;
width: 100%;
margin: 0 auto;
margin-top: 0px;
padding; 0;
height: 40px;
background-color: black;
}
.logo {
color: white;
float: left;
margin-top: 10px;
margin-left: 10px;
}
.nav {
float: right;
color: white;
margin: 0;
margin-top: 0;
}
.banner {
background: url("images/background.jpg") no-repeat center center;
background-size: cover;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
height: 200px;
width: 100%;
}
<html>
<head>
<meta charset="utf-8">
<meta name="Author" content="James Vivian">
<meta name="Original Filename" content="index">
<meta name="Date Created" content="8/6/2017">
<meta name="Version" content="Version 1">
<title>Photography Masters</title>
<link rel="stylesheet" type="text/css" href="Styles.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<body>
<header>
<div class="logo">Photography Masters</div>
<nav>
<ul>
<li><a href="#link"> About</a></li>
<li><a href="#link"> Contact</a></li>
<li><a href="#link"> Gallery</a></li>
<li><a href="#link"> Services</a></li>
</ul>
</nav>
</header>
</body>
</html>