Suckerfish dropdown menu sticking in ie7 ?
Add the following code in to your css #topmenu li:hover{ position:static; } This will fix the dropdown menu sticking ( dropdown menu not folding out ) problem in ie7.
Add the following code in to your css #topmenu li:hover{ position:static; } This will fix the dropdown menu sticking ( dropdown menu not folding out ) problem in ie7.
This is sort of hack which helps you write CSS specific to IE6 / IE7. EX: _display:none;/* IE 6 Fix */ *display:none;/* IE 7 Fix */ NOTE: This code is not recommended if you are writing code that has to comply to CSS standards. In such cases you may have to switch [...]