Page 1 of 1

Add custom links to the top of the menu

Posted: Wed Dec 16, 2015 3:40 pm
by norman
We''ll put in a link to the Contact Us Form as an example.

Look in Design / Library / Layouts / AccordionJQ / Accordion Menu for the line:

Code: Select all

	<div id="dpacmn">
Immediately after that line add:

Code: Select all

		<h4><a href="<actinic:variable name="SendMailPageLink" />"><actinic:variable name="SendMailText" /></a></h4><div></div>
Or for a simple link use e.g:

Code: Select all

		<h4><a href="whatever">Whatever</a></h4><div></div>
To put these links at the bottom, look for

Code: Select all

	</div>
</div>
<!-- Accordion code end -->
And put your stuff above it.

Re: Add custom links to the top of the menu

Posted: Wed Dec 16, 2015 4:29 pm
by norman
If you are using Accordion Menu V1.04 or earlier, then use the above but change the <h4> and </h4> into <h3> and </h3>