View Single Post
  #3 (permalink)  
Old Jul 3rd, 2007, 15:18
Lchad Lchad is offline
SuperMember

SuperMember
Join Date: Sep 2006
Location: Pink House
Posts: 3,946
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Question about layout/IE7 issue

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.
Reply With Quote