I just wanted to post a fix to a problem that has be been bugging me (and many of you) for quite a while. A lot of people have noticed that the drop down menus on the subnav haven't been appearing on IE6, and here's the fix. The gist of this was that the references to the sfhover elements in the subnav should have been sfhover1. So find this in your stylesheet:
Code:
#subnav li:hover ul ul, #subnav li:hover ul ul ul, #subnav li.sfhover ul ul, #subnav li.sfhover ul ul ul {
left: -999em;
}
#subnav li:hover ul, #subnav li li:hover ul, #subnav li li li:hover ul, #subnav li.sfhover ul, #subnav li li.sfhover ul, #subnav li li li.sfhover ul {
left: auto;
}
#subnav li:hover, #subnav li.sfhover {
position: static;
}
And replace it with this:
Code:
#subnav li:hover ul ul, #subnav li:hover ul ul ul, #subnav li.sfhover1 ul ul, #subnav li.sfhover1 ul ul ul {
left: -999em;
}
#subnav li:hover ul, #subnav li li:hover ul, #subnav li li li:hover ul, #subnav li.sfhover1 ul, #subnav li li.sfhover1 ul, #subnav li li li.sfhover1 ul {
left: auto;
}
#subnav li:hover, #subnav li.sfhover1 {
position: static;
}
Many thanks to
Ade who helped figure out the issue. Sometimes it's a simple oversight that can cause an issue, and this was certainly the case with this one. As they say, MY BAD!
For those who were having this problem, please try this and let me know if it fixes the issue - it should!