2009/1/23  <[email protected]>:
> Hi -
>
> I'm trying to do a very simple CSS site, but when checking my site in IE 7,
> my navigation is missing. It's showing in all other browsers except for IE. 
> <..snip>

Hi Stacy,

I haven't checked in IE7 but your page breaks in FF3/Win too.

I see some unnecessary <div>'s there. For example:

<div id="nav">
<ul>
<li></li>
..
</ul
</div>

could just be written as:

<ul id="nav">
<ul>
<li></li
</ul>

I've also removed height:100% and a lot of code I thought was
unnecessary. For example, the background: transparent on all the
links, and  background-repeat: repeat-x for repeating colors? Anyway:

Here is the new mark-up: http://pastie.org/369427
&
the CSS: http://pastie.org/369424

This works in IE6, FF3, Opera 9, Safari 3 on Windows XP machine. It
should work on IE7 too.

Regards
-----
Mustafa Quilon
______________________________________________________________________
css-discuss [[email protected]]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
List policies -- http://css-discuss.org/policies.html
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

Reply via email to