Page 1 of 1

How to add menu items

Posted: Thu Jul 31, 2014 11:56 am
by VIPER7
Is it possible to add links / menu items to the top menu bar, and if so, how?

Re: How to add menu items

Posted: Thu Jul 31, 2014 2:04 pm
by Katie
It is in the \ConLib\StoreHeader.ascx file. Look for this code near the bottom -

Code: Select all

<div id="headerNavigation">
		<div class="navigation">
			<asp:HyperLink ID="HomeLink" runat="server" NavigateUrl="~/Default.aspx" CssClass="tab" Text="Home" />
			<asp:HyperLink ID="SearchLink" runat="server" NavigateUrl="~/Search.aspx" CssClass="tab" Text="Product Finder" />
			<asp:HyperLink ID="AdvSearchLink" runat="server" NavigateUrl="~/AdvancedSearch.aspx" CssClass="tab" Text="Advanced Search" />
			<asp:HyperLink ID="CurrencyLink" runat="server" NavigateUrl="~/Currencies.aspx" CssClass="tab" Text="Currencies" />
			<asp:HyperLink ID="ContactLink" runat="server" NavigateUrl="~/ContactUs.aspx" CssClass="tab" Text="Contact Us" />
		</div>
	</div>

Re: How to add menu items

Posted: Thu Jul 31, 2014 2:13 pm
by VIPER7
That worked great Katie! Thanks a million!