LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Programming (https://www.linuxquestions.org/questions/programming-9/)
-   -   Menu bar being blocked by combo box in html (https://www.linuxquestions.org/questions/programming-9/menu-bar-being-blocked-by-combo-box-in-html-273977/)

ArulPrabhuT 01-04-2005 10:45 PM

Menu bar being blocked by combo box in html
 
HI,

I have this problem which happen in the interface of my web application. I have this menu bar at the very top and when the menu bar is in the pull down state, the combo box beneath it will cover the menu bar. And this doesnt happen to other controls in the form?

Basically this combo box is covering my menu bar which suppose to be on top of it when the menu bar is in the pull down state. And this problem occurs only in MS Internet Explorer browsers and works fine with mozilla, opera and forefox browsers.

How can i overcome this problem?

Thanx in advance

Mohsen 01-04-2005 11:26 PM

Yes, it's a problem with MS IE, which can not be solved. Once I had the same problem. I hide all the <select>s in the page when a layer was to be shown, This can be done easily:
document.getElementsByTagName("SELECT").style.display="none";

Mohsen 01-04-2005 11:35 PM

Also you can look at:
http://www.faqts.com/knowledge_base/...d/14237/fid/53
and
http://support.microsoft.com/support.../Q177/3/78.ASP

ArulPrabhuT 01-05-2005 03:09 AM

Thanks Mohsen,
Let me try it with the points you had given.


All times are GMT -5. The time now is 03:09 PM.