Hi guys,
I have a row of information across the top of the page that includes some debug text, login name, the top menu item, and the login status. I want to keep everything in that order from left to right. However, the RadMenu always places itself on the end at the right.
The menu was showing up on the extreme left (much worse!) before I found this trick:
div.RadMenu_Web20
{
float: right;
}
How do I get the menu to stay in the correct order? The relevant markup is included below.
Thanks,
Ken
I have a row of information across the top of the page that includes some debug text, login name, the top menu item, and the login status. I want to keep everything in that order from left to right. However, the RadMenu always places itself on the end at the right.
The menu was showing up on the extreme left (much worse!) before I found this trick:
div.RadMenu_Web20
{
float: right;
}
How do I get the menu to stay in the correct order? The relevant markup is included below.
Thanks,
Ken
<div class="utilitylinks"> <asp:Literal ID="Literal1" runat="server"></asp:Literal> <asp:Label EnableViewState="true" ID="lblLoginName" runat="server"></asp:Label> <telerik:RadMenu ID="mnuSettings" runat="server" CssClass="utilitylinks" EnableEmbeddedSkins="false"> <Items> <telerik:RadMenuItem runat="server" PostBack="False" ForeColor="White" Text="Settings"> <Items> <telerik:RadMenuItem runat="server" NavigateUrl="~/setmyrole.aspx" PostBack="False" SelectedCssClass="uppermenuitemsfocussed" FocusedCssClass="uppermenuitemsfocussed" CssClass="uppermenuitems" Text="Debug: Set My Role" /> <telerik:RadMenuItem runat="server" NavigateUrl="~/datadownload.aspx" PostBack="False" CssClass="uppermenuitems" Text="Data Download" /> <telerik:RadMenuItem runat="server" NavigateUrl="~/delegateaccess.aspx" PostBack="False" CssClass="uppermenuitems" Text="Delegate Access" /> <telerik:RadMenuItem runat="server" NavigateUrl="~/managedelegations.aspx" PostBack="False" CssClass="uppermenuitems" Text="Manage Delegations" /> <telerik:RadMenuItem runat="server" NavigateUrl="~/redeemtoken.aspx" PostBack="False" CssClass="uppermenuitems" Text="Redeem Token" /> <telerik:RadMenuItem runat="server" NavigateUrl="~/bizactivities.aspx" PostBack="False" CssClass="uppermenuitems" Text="Business Profile Settings" /> <telerik:RadMenuItem runat="server" NavigateUrl="~/setbusactivity.aspx" PostBack="False" CssClass="uppermenuitems" Text="Set Business Activity" /> <telerik:RadMenuItem runat="server" NavigateUrl="~/accounttypes.aspx" PostBack="False" CssClass="uppermenuitems" Text="Accounts" /> </Items> </telerik:RadMenuItem> </Items> </telerik:RadMenu> <asp:LoginStatus EnableViewState="true" CssClass="utilitylinks" ID="LoginStatus2" runat="server" LogoutAction="Redirect" LogoutPageUrl="logout.aspx" /> </div>