This question is locked. New answers and comments are not allowed.
In IE7 (and IE8 with compatibility mode), the menu control displays the drop down some 50+ pixels to the right of the parent item when opened. To resolve this problem, open telerik.common.min.css, and make the following changes:
in
add
position:relative;
in
remove
,t-menu .t-group
so these two lines will look like:
This hack fixes the display problem in IE7 and still works in firefox 7.
in
.t-menu .tgroup{display:none;white-space:nowrap;border-style:solid;border-width:1px;overflow:visible;}add
position:relative;
in
.t-menu .t-animation-container,.t-menu .t-group{left:-1px;position:absolute;}remove
,t-menu .t-group
so these two lines will look like:
.t-menu .tgroup{display:none;white-space:nowrap;border-style:solid;border-width:1px;overflow:visible;position:relative;}
.t-menu .t-animation-container{left:-1px;position:absolute;}This hack fixes the display problem in IE7 and still works in firefox 7.
