or
<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


| Public Sub RadComboboxEmployeeDateSubmittedFilter_SelectedIndexChanged(ByVal sender As Object, ByVal e As RadComboBoxSelectedIndexChangedEventArgs) |
| _startDate = String.Format(CultureInfo.CurrentCulture, "1/1/{0} 12:00:00 AM", e.Value) |
| _endDate = String.Format(CultureInfo.CurrentCulture, "12/31/{0} 11:59:59 PM", e.Value) |
| Session.Item("TransactionLogYearFilter") = e.Value |
| RadGridEmployeeTransactions.Rebind() |
| End Sub |
| Private Sub RadGridEmployeeTransactions_NeedDataSource(ByVal source As Object, ByVal e As GridNeedDataSourceEventArgs) Handles RadGridEmployeeTransactions.NeedDataSource |
| Dim lTransactions As DataSet = Nothing |
| If UserType <> EnumHelper.UserType.Employee Then |
| Return |
| End If |
| Try |
| lTransactions = MiBenefitsHelper.GetEmployeeTransactions(GroupNumber, _ |
| FamilyNumber, _ |
| _startDate, _ |
| _endDate) |
| RadGridEmployeeTransactions.DataSource = lTransactions |
| Catch ex As WcfException |
| PanelEmployeeTransactionLog.Visible = False |
| PanelUpdateStatus.Visible = True |
| LabelUpdateStatus.Text = "There was an error returning your transactions and they cannot be displayed at this time. EBMS has been notified of the problem and will have it resolved as soon as possible." |
| LabelUpdateStatus.ForeColor = Color.Red |
| ExceptionPolicy.HandleException(ex, "Global Policy") |
| End Try |
| End Sub |

.RadComboBox_WebBlue .MyLabelStyle.riLabel { font-family: Verdana,Helvetica,Arial; font-size: 10pt; color: Navy; }<telerik:RadSlidingZone ID="rszRight" runat="server" Width="22px" SlideDirection="Left">
<telerik:RadSlidingPane ID="rspDetails" Title="Task Details" runat="server" Width="170px" OnClientCollapsed="rspDetails_Collapsed" OnClientExpanded="rspDetails_Expanded" >
... 