I am looking to have the logout link displayed on the far right when the other menu items are hidden.
Currently, it is appearing in the center.
Is there a way I can make it show up on the right?
<div class="nav-content container">
<div class="nav-wrapper">
<ul class="main-nav">
<asp:PlaceHolder runat="server" ID="hideNav">
<li runat="server" id="home" Visible="false" class="hide"><asp:HyperLink Id="homeLink" runat="server"></asp:HyperLink></li>
<li runat="server" id="reportClaim" Visible="False" class="hide"><asp:HyperLink runat="server" NavigateUrl="/reportclaim.aspx" Text="<span>Report Claim</span>" ID="reportClaimLink"></asp:HyperLink></li>
<li id="lnkLogOut1" runat="server" style=" "><asp:HyperLink runat="server" NavigateUrl="~/LogOut.aspx" Text="<span>Log Out</span>"></asp:HyperLink></li>
</asp:PlaceHolder>
</ul>
</div>
I have attempted to use
.pull-right {
float: right !important;
}
but unfortunately it is not having any effect.