Here’s a quick and dirty fix for that annoying issue/bug where the menu appears below the screen where it’s not accessible..I’m yet to submit this suggestion to Sitecore myself – actually, I am not sure this is even an issue on 6.4 – I do know 6.3 and earlier have this problem, so here’s a quick fix that I discovered.
=====================================================================
Go to Website\sitecore\shell\Controls\InternetExplorer.js
Around line 333, Change:
case "right": x = ctl.offsetWidth - 3; y = 0 break;
TO
case "right": x = ctl.offsetWidth - 3; y = -height + 33; break;
You then get this:
Much Nicer


Thanks for sharing this fix, it was just starting to bug me and now looks much better!
Cheers,
Nick