ヘッダーを作成していますが、ボディの幅全体を占める必要があります。width: 100%;
ヘッダーを試してみましたdiv
が、まだ両側に空白がありました。左に移動して幅を 100% 以上にしようとしましたが、水平スクロール バーを追加しただけで、右にスクロールすると右側に空白が残ります。
HTML:
<div id="header">
<img id="logo" src="images/logo.png" alt="">
<div id="nav">
<a href="index.html">Home</a>
<a href="about.html">About</a>
<a href="gallery.html">Gallery</a>
<a href="contact.html">Contact</a>
</div>
</div>
CSS:
#header {
position: relative;
left: -9px;
bottom: 8px;
padding-top: 5px;
padding-bottom: 5px;
background: url(images/dark_dotted.png);
width: 105%;
text-align: center;
border-bottom: 4px orange solid;
}
#header #logo {
padding-right: 700px;
}
#nav {
position: relative;
bottom: 30px;
font-size: 28px;
right: -300px;
font-family: roboto;
}