Hi. I need help finding the Ton Nav code. I searched everywhere before asking for help.
The code in Firebug shows...
<a style="border-style:none;font-size:1em;margin-left:16px;" href="t-service.aspx" class="ctl00_aspnetMenu_1 aspnetMenu_StaticMenuItemStyle ctl00_aspnetMenu_3 aspnetMenu_Level2 ctl00_aspnetMenu_10">CUSTOMER SERVICE</a>
I want to change margin-left:16px; to margin-left:0px;
But the code in template.master only shows.....................
<!-- TOP MENU -->
<table border="0" cellpadding="0" cellspacing="0">
<tr><td>
<asp:Menu ID="aspnetMenu" runat="server" Orientation="Horizontal" StaticTopSeparatorImageUrl="<%$ Tokens:skinimage, tab-sep.gif %>"
StaticEnableDefaultPopOutImage="False" StaticDisplayLevels="2" MaximumDynamicDisplayLevels="<%$ Tokens:AppConfigUSInt, MaxMenuLevel %>">
<StaticSelectedStyle CssClass="aspnetMenu_StaticSelectedStyle" />
<LevelMenuItemStyles>
<asp:MenuItemStyle CssClass="aspnetMenu_Level1" Font-Underline="False" />
<asp:MenuItemStyle CssClass="aspnetMenu_Level2" Font-Underline="False" />
</LevelMenuItemStyles>
<StaticMenuItemStyle CssClass="aspnetMenu_StaticMenuItemStyle" />
<DynamicSelectedStyle CssClass="aspnetMenu_DynamicSelectedStyle" />
<DynamicMenuItemStyle CssClass="aspnetMenu_DynamicMenuItemStyle" />
<DynamicMenuStyle CssClass="aspnetMenu_DynamicMenuStyle" />
<%--
These 2 styles below can't be added declaratively, it will be added later on the script
But needs to follow the naming convention {MenuId}_WhatEverStyle
--%>
<%--<DynamicHoverStyle CssClass="aspnetMenu_DynamicHoverStyle" />--%>
<%--<StaticHoverStyle CssClass="aspnetMenu_StaticHoverStyle" />--%>
</asp:Menu>
<!-- END TOP MENU -->
Adding "margin-left: 0px;" in the aspnetMenu_StaticSelectedStyle in the CSS file doesn't fix it.
Please help....