First of all you have an error in the h2,h3
css and it's throwing off the rest of the
css.
Fix to this:
- Code: Select all
#header2, h3 {
position: absolute;
left:22px;
top: 44px;
color: black;
padding: 0 0 0 0.7em;
margin: -1em 0 0 0;
font: normal 13px/1 Verdana, Arial, Helvetica, sans-serif;
}
Secondly you have a closing div missing.
I put it in red.
- Code: Select all
<body> <div id="wrapper">
<div id="header">
<h1>FiXaFlick</h1>
<div id="header2">
<h3>DVD Slideshow Presentations</h3>
<div id="nav">
<ul>
<li class="home"><a href="http://www.fixaflick.com">Home</a></li>
<li><a href="http://www. ">About Us</a></li>
<li><a href="http://www. ">Services</a></li>
<li><a href="http://www. ">Prices</a></li>
<li><a href="http://www.">Portfolio</a></li>
<li><a href="http://www. ">How To Order</a></li>
<li><a href="http://www. ">Contact Us</a></li>
</ul>
</div>
</div>
</div>
<div class="clear" id="footc"> </div>
<div id="footer">
Copyright 2007 All rights reserved by Chris Chagnon
</div>
</div>
Now the question is... why is the strawberry.jpg the background of a nav?
It should be in a div id or div class since it's more of a body element.