|
In IE the submenus of drop down menus in css are open down the page and go off the bottom of the screen.
Return to Recent Questions
Q:
Under Opera and Firefox drop down menus in css works fine but under IE the submenu’s are
open down the page and go off the bottom of the screen.
A:
Problem is that the drop down menus in css can't get the value of "position" attribute of the object if the object doesn't have this property within inline style
(style="PADDING-BOTTOM: 10px;"). To get the value you should move .css style into style="" attribute.
You should add style="PADDING-BOTTOM: 10px;"
to the
<DIV class=department-menu>
So, you'll have:
<DIV class=department-menu style="POSITION: absolute;PADDING-BOTTOM: 10px;">
Return to Recent Questions
Related:
- Apr 10, 2009 - I can not figure out how to fix the css dynamic menu from going off the page in Mozilla...
- Apr 19, 2009 - What can I do for people who have Javascript turned off so they can't use the popup menu css...
- May 16, 2009 - The alignment of the submenus is not correct in my menu script.
- May 22, 2009 - I would like to have links of dhtml menu software to our website when javascript turned off.
- May 27, 2009 - The submenu of css horizontal navigation disappears, it goes BEHIND the flash and can't be seen.
- Jun 22, 2009 - Is it possible to have all of the submenus start at the top of the net navigation menu.
- Jul 13, 2009 - Flash in Firefox disappears behind the submenus of css menu bar.
- Jul 21, 2009 - Images of css vertical drop down menu showing up as blank in the preview screen...
- Jul 27, 2009 - Is it possible to customize the direction of javascript tree menus submenus relative to the browser window...
- Aug 01, 2009 - I want that menu button not recognize when user has moused off the menu button not, and then disappear.
- Aug 31, 2009 - In IE 6.0 and Firefox, the submenus of my horizontal menu css are not visible
|