View Single Post
  #7 (permalink)  
Old Jul 10th, 2007, 16:24
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: site is great in safari & firefox, but not IE7...

The first thing I noticed is you have extra <body>and </header>code in the html. Delete the ones in red below.
Code: Select all
<body>
<div id="wrapper">
  <div id="header">
    <ul>
      <li id="home"><a href="Index.html">algoodbody</a></li>
      <li id="port"><a href="PortfolioPage.html">portfolio</a></li>
      <li id="misc"><a href="MiscPage.html">misc</a></li>
      <li id="contact"><a href="ContactPage.html">contact</a></li>
    </ul>
  </div>
  

  </body>
  </head>

<div id="content">  

<body>
<img src="img/MiscPage.html" width="800" height="536" border="0" usemap="#Map" />

<map name="Map" id="Map"/>
<area shape="rect" coords="531,357,759,511" href="Urge01.html" />
<area shape="rect" coords="286,357,515,511" href="Butter01.html" />
<area shape="rect" coords="43,358,272,510" href="Mukky.html" />
<area shape="rect" coords="531,191,759,341" href="Fields02.html" />
<area shape="rect" coords="285,191,514,342" href="What02.html" />
<area shape="rect" coords="44,192,271,341" href="Crack.html" />
<area shape="rect" coords="530,23,757,179" href="May01.html"/>
<area shape="rect" coords="285,23,514,178" href="Pink Twist.html" />
<area shape="rect" coords="45,24,272,178" href="Explode.html" />   
  


</map>
</body>
</html
Also Close the </html> code in orange.
See what that does. Then we can see what we need to do with the css.

Last edited by Lchad; Jul 10th, 2007 at 16:26. Reason: Edit.. another mistake found.
Reply With Quote