Rick Faircloth schrieb:

Perhaps it's just a matter of styling the submenu via css?

Yes, you have not changed the Script.

See here

http://www.htmldog.com/articles/suckerfish/dropdowns/example/bones1.html

and copy this CSS per EditCSS in Firefox (overwrite exist):

body {
        font-family: arial, helvetica, serif;
}

#nav, #nav ul { /* all lists */
        padding: 0;
        margin: 0;
        list-style: none;
        line-height: 1;
}

#nav li { /* all list items */
        float: left;
        width: 10em; /* width needed or else Opera goes nuts */
}
#nav li li { /* all list items */
        float: left;
        margin:0 6px;
        width: auto;
}
#nav li ul { /* second-level lists */
        position: absolute;
        background: orange;
        width: auto;
left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
}

#nav li:hover ul, #nav li.sfhover ul { /* lists nested under hovered list items */
        left: 0;
}

#content {
        clear: left;
        color: #ccc;
}

--
Viele Grüße, Olaf

-------------------------------
[EMAIL PROTECTED]
http://olaf-bosch.de
www.akitafreund.de
-------------------------------

Reply via email to