/* first-level list */
#topMenu_ul a {
display: block;
width: 6.4em;
text-decoration: none;
color: #FFFFFF;
padding: 1px 3px 5px 5px;
Then, what is my question?
height: 1em;
}
/* faded blue */
#topMenu_ul a:hover{
background:#5C75AA;
}
/* all list items */
#topMenu_ul li {
float: left;
padding:0;
margin:0;
}
#topMenu_ul li ul { /* second-level lists */
position: absolute;
width: 8.3em;
left: -1999px; /* more accessible than display: none */
background: #eee;
Then, what is my question?
height: auto;
margin: 0;
border-width: 1px;
Then, what is my question?
font-weight: normal;
font-size: 12px;
}
#topMenu_ul li ul li a{
color: #394664;
width: 100%;
padding:3px 6px;
white-space:nowrap;
}
#topMenu_ul li:hover ul, #topMenu_ul li li:hover ul, #topMenu_ul li.navhover ul, #topMenu_ul li li.navhover ul{ /* lists nested under hovered list items */
left: auto;
}
The above codes were tested on Firefox and it worked.
However, when I tested it on Internet Explorer 9, the list under the HELP menu failed to show up.
How can I make the items under the HELP menu show up on IE9?
Bookmarks