How to modify the top Menu adding permanent link

Store UI, layout, design, look and feel; Discussion on the customer facing pages of your online store. Cascading Style Sheets, Themes, Scriptlets, NVelocity and the components in the ConLib directory.
Post Reply
User avatar
freedom1029
Lieutenant, Jr. Grade (LT JG)
Lieutenant, Jr. Grade (LT JG)
Posts: 35
Joined: Thu Nov 01, 2007 1:40 pm
Location: Montreal

How to modify the top Menu adding permanent link

Post by freedom1029 » Tue Jul 28, 2009 2:43 pm

Hi there,
I am no expert with AC 7 so if I could get some help on how to modify an existing menu I would greatly appreciate. I have been asked to add a permanent hyperlink at the end of the existing menu, on the extreme right of the contact us link. This link would link to a page on a different web site.

Thanks in advance.

User avatar
mazhar
Master Yoda
Master Yoda
Posts: 5084
Joined: Wed Jul 09, 2008 8:21 am
Contact:

Re: How to modify the top Menu adding permanent link

Post by mazhar » Wed Jul 29, 2009 2:17 am

Edit your Standarad Header scriptlet and locate following line in it

Code: Select all

<a href="~/ContactUs.aspx" class="tab">Contact Us</a>
and replace it with

Code: Select all

<a href="~/ContactUs.aspx" class="tab">Contact Us</a>
<a href="http://yourdomainname.xyzd" class="tab">External Website</a>
Now put real website address in place of http://yourdomainname.xyzd and website name in place of External Website

Post Reply