This is a migrated thread and some comments may be shown as answers.

[Solved] Solution: IE7 & IE8 do not display Q2 2011 menu properly

3 Answers 68 Views
Menu
This is a migrated thread and some comments may be shown as answers.
This question is locked. New answers and comments are not allowed.
charles
Top achievements
Rank 1
charles asked on 07 Nov 2011, 12:21 PM
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
.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.

3 Answers, 1 is accepted

Sort by
0
Dimo
Telerik team
answered on 07 Nov 2011, 02:21 PM
Hello Charles,

We are not aware of such a problem, so I suspect this problem does not occur in all scenarios. Can you provide a test project for us to inspect locally?

Also, note that .tgroup should be spelled .t-group.

Regards,
Dimo
the Telerik team
If you want to get updates on new releases, tips and tricks and sneak peeks at our product labs directly from the developers working on the Telerik Extensions for ASP.MET MVC, subscribe to their blog feed now
0
Gene
Top achievements
Rank 1
answered on 04 Feb 2012, 04:42 AM
you are right,but long drop down menu will be overlaid by the following View Content, how about?
0
Gene
Top achievements
Rank 1
answered on 04 Feb 2012, 05:58 AM
"but long drop down menu will be overlaid by the following View Content " issue have be resolved by "      .HtmlAttributes(new { style = "text-align:right;z-index:11000" })
"
Tags
Menu
Asked by
charles
Top achievements
Rank 1
Answers by
Dimo
Telerik team
Gene
Top achievements
Rank 1
Share this question
or