I am developing a new website and I have run into a problem. The way I want my navigation bar to work is that it fits in the title (logo bar).
Here is what it currently looks like when encoding:
Here is what I want it to look like this:
This is currently my CSS:
#header { margin: 0px auto; width: 900px; height: 170px; background: #000; } #navigation { margin: 0px auto; width: 920px; height: 60px; background: url('images/nav.png'); }
And my HTML:
<div id="header"> </div> <div id="navigation"> </div>
source share