I'm using RadNavigation to create a responsive menu for my website.
I have run into two issues.
1.
How can I make certain NavigationNodes right aligned? So I can have a log out button be right aligned, away from the rest of the options. Here is my code
I have run into two issues.
1.
How can I make certain NavigationNodes right aligned? So I can have a log out button be right aligned, away from the rest of the options. Here is my code
<telerik:RadNavigation runat="server" ID="nav1" EnableTheming="true"> <Nodes> <telerik:NavigationNode Text="Home" NavigateUrl="Default.aspx"> </telerik:NavigationNode> <telerik:NavigationNode Text="Causes" > <Nodes> <telerik:NavigationNode Text="My Causes"></telerik:NavigationNode> <telerik:NavigationNode Text="Manage Causes"></telerik:NavigationNode> </Nodes> </telerik:NavigationNode> <telerik:NavigationNode Text="Log Out" NavigateUrl="LogOut.aspx"> </telerik:NavigationNode> </Nodes></telerik:RadNavigation>
I want the 'Log Out' navigation node to be right aligned. I've attached an image of what the menu bar currently looks like.
2. I want to be able to hover over the elements to see the drop down. I Don't know where to change this with RadNavigation
