I am fairly new to coding and I don’t know what to look for to debug my drop down menu in IE. BTW, I am still going through the whole thing to clean everything up (had to have this up way too quickly). I’ve read many posts here and tried many things but to no avail.
What’s going on with this menu in IE?
http://pages.videotron.com/dragon64/
If you need me to post the html code, please let me know. Here is the menu CSS :
/* ------ Top Nav Bar ------- */
#navcontainer {
padding-left:25px;
}
ul#navlist {
font-family: arial, sans-serif;
width:100%;
}
ul#navlist a {
font-weight: bold;
text-decoration: none;
border-top: 1px solid #33CC33;
border-bottom: 1px solid #33CC33;
}
ul#navlist, ul#navlist ul, ul#navlist li {
margin: 0px;
padding: 0px;
list-style-type: none;
}
ul#navlist li {
float: left;
margin: 1px 0px 1px 0px;
}
ul#navlist li a {
color: #33CC33;
background-color:#000;
padding: 3px;
border: 1px 1px 1px 1px #33CC33;
}
ul#navlist li a:hover {
color: #E8E8E8;
background-color: #585858;
}
ul#navlist li a:active {
color: #cccccc;
background-color: #003366;
border: 1px #ffffff inset;
}
ul#subnavlist {
display: none;
background-color: #000;
}
ul#subnavlist li { float: none; }
ul#subnavlist li a {
padding: 0px;
margin: 0px;
}
ul#navlist li:hover ul#subnavlist {
display: block;
position: absolute;
font-size: 8pt;
padding-top: 5px;
}
ul#navlist li:hover ul#subnavlist li a{
display: block;
width: 10em;
border: none;
padding: 2px;
}
ul#navlist li:hover ul#subnavlist li a:before { content: " > "; }
And yes, the map links on the left is a no-no … among other ugly codes. I am fixing those to have a nice clean site. This one is totally temporary and full of errors. The menu is giving me the most head-banging-on-keyboard headache…for now.
Thank you!