Thanks Steve - I fixed the markup but the menus are still jumpy in IE ... is there anything I can to do the styles?

Tanya

Steve Clason wrote:

On 8/1/2005 7:41 AM jordan WOLLMAN wrote:

I¹m working on an interface for my company¹s new CMS, and my Suckerfish
dropdowns work just fine in IE, but not in FF or Safari. Any help would be
appreciated.
http://extranet.ariamedia.com/projects/ariamedia/extranet/conductor/interfac
e/


The problem is in the markup. You're top level list items don't contain the sub-menu lists.

You have this:
<ul id="nav">
  <li><a href="#">File</a></li><!####### look here #######-->
    <ul>
      <li><a href="#">New</a></li>
      <li><a href="#">Open</a></li>
      <li><a href="#">Close</a></li>
      <li><a href="#">Save</a></li>
      <li><a href="#">Save As...</a></li>
      <li><a href="#">Log Out</a></li>
    </ul>

Notice that the top list item is closed before the sub-list starts.

Try this:
<ul id="nav">
  <li><a href="#">File</a>
    <ul>
      <li><a href="#">New</a></li>
      <li><a href="#">Open</a></li>
      <li><a href="#">Close</a></li>
      <li><a href="#">Save</a></li>
      <li><a href="#">Save As...</a></li>
      <li><a href="#">Log Out</a></li>
    </ul>
  </li><!###### look here #######-->

This contains the sub-list in the top-level list item.


______________________________________________________________________
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