Darn I posted the solution but it didn't post.
RETRY:
You have an error in your
css which is not allowing the rest of your
css to work. Fix 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;
}
You also have a closing div missing.. it's in red below:
- 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>
Also you need to sort out why strawberry.jpg is a background image in #nav. It should be in a div id or div class since it's a body element.
That
css at the top of the page is messed up too.
You can't have #header2, h3 which is what you have.
Either use h2, h3 or if you need a div id for #header2, you can't have h3 with it.