> From: Travis F. Smith
> 
> http://www.bargaintarps.com/index_soon.html
> 
> In IE 6.0 for Windows, the navigation colors are green on green, and 
> unreadable.

Travis,

You seem to have a markup error in the menu structure.
----
<li><ul class="secondnav"><h2>Applications</h2>
      <li><a href="tarps_mesh.html">Bin Covers</a></li>
----

The ul element can only contain li elements, you can't
put the h2 element where you have it.

Better to use markup like:
----
<li><h2>Applications</h2>
    <ul class="secondnav">
      <li><a href="tarps_mesh.html">Bin Covers</a></li>
----

The li element can contain other block level elements
such as the h2 as shown above.

There are some other markup problems, run it past the W3C
validator and tidy it up before you spend more time on
troubleshooting broken markup.  http://tinyurl.com/9andq

-- 
Peter Williams
______________________________________________________________________
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

Reply via email to