Im trying to have my dnn menu so the tabs for dnn:login and dnn:user will align right, instead of left as the rest of the menu.
Ive tried fiddling around with float:right on the span tags thats wrapped around the controls in my page.ascx file, but no luck.
This is the page:
http://indsj.dk.nt23.unoeuro-server.com/Forside
This is the menu used:
src="~/DesktopModules/DDRMenu/Menu.ascx"
This is the nav section:
<nav>
<div>
<div id="Extra1" runat="server">
</div>
</div>
<div>
<div id="Extra2" runat="server">
</div>
</div>
<dnn:menu menustyle="Menu" runat="server">
<templatearguments>
<dnn:templateargument name="class" value="cbits-hmenu"></dnn:templateargument>
</templatearguments>
</dnn:menu>
<span id="cbits-login"><dnn:login id="dnnLOGIN" runat="server"></dnn:login></span>
<span id="cbits-user"><dnn:user id="dnnUSER" runat="server"></dnn:user></span>
</nav>
Any help is greatly appreciated.
Thx in advance. :-)