Within my nested menu, everything is functioning correctly except for the third hierarchy level.
I have the code and the result available here: http://jsfiddle.net/wvsL9/
If you hover over the menu "PRODUCTS" and then "PRIVATE", you will notice that the width does not adjust to "auto". I've been trying different variations but seem to be stuck. Can anyone help me figure out why it's not working as intended?
Thank you in advance!
#menu, #menu ul {
margin: 0;
padding: 0;
list-style: none;
font-size: 0.9em;
font-family:'Helvetica Neue For BBC W01 Bd';
}
#menu:before,
#menu:after {
content: "";
display: table;
}
#menu:after {
clear: both;
}
.... (remaining CSS code)