I have been trying various themes with dropdown menus .... all seem to have bugs.
The Newbury College theme LOOKS great but when I tried to add a resource 'link to file or website', I was unable to get the file upload screen.
So I had another look at 'Prettysimple' and remembered a similar bug in IE7 with another CMS used at my school - and the same fix works:
In Edumoodle.css, at the bottom are these lines:
#topmenu ul li li a:hover{
background-image: none;
border-bottom: 1px solid #f59231;
}
#topmenu ul li ul {
left: -999em;
}
#topmenu ul li:hover ul ul, #topmenu ul li:hover ul ul ul {
left: -999em;
}
#topmenu ul li:hover ul, #topmenu ul li li:hover ul, #topmenu ul li li li:hover ul {
left: auto;
}
If you replace with:
#topmenu ul li li a:hover{
background-image: none;
border-bottom: 1px solid #f59231;
min-height:0;
}
#topmenu ul li ul {
left: -999em;
}
#topmenu ul li:hover ul ul, #topmenu ul li:hover ul ul ul {
left: -999em;
min-height:0;
}
#topmenu ul li:hover ul, #topmenu ul li li:hover ul, #topmenu ul li li li:hover ul {
left: auto;
min-height:0;
}
The 'min-height:0;' line seems to fix the bug (apparently quite common) in IE7!