Posted 23 Nov 2009 Link to this post
Posted 24 Nov 2009 Link to this post
<
html
xmlns
=
"http://www.w3.org/1999/xhtml"
>
head
id
"Head1"
runat
"server"
title
></
style
type
"text/css"
div.RadMenu .rmLast
{
float: right;
}
</
body
form
"form1"
telerik:RadScriptManager
ID
"RadScriptManager1"
telerik:RadMenu
"RadMenu1"
Width
"100%"
Items
telerik:RadMenuItem
Text
"Root RadMenuItem1"
"Child RadMenuItem 1"
"Child RadMenuItem 2"
"Child RadMenuItem 3"
"Root RadMenuItem2"
"Root RadMenuItem3"
Posted 04 Dec 2009 Link to this post
does not work properly for menues with subitems in IE6/7 even though it does in IE8. The above style causes the last sub-menu item in the menu to be displaced floating right as well as the menu item you had intended. Yana from the Telerik team gave me these styles to replace the above style which solves the problem. I thought this to be something useful for others who are trying to do this with their menu. div.RadMenu .rmRootGroup .rmLast { float: right; } div.RadMenu .rmGroup .rmLast { float: none; } works for me. Thanx Yana!!!
works for me. Thanx Yana!!!