Main Content

Using WC Navigation Tools

WC Anchor Nav for Anchor Menus

With the built-in WC Anchor Nav tool, you can let Evolution create anchor menus and back-to-top links automatically for you. All the WC Anchor Nav requires is the following:

The Anchor Menu Placeholder

To create an anchor menu like the one above first place the following code where you would like the anchor menu to appear:

<p id="anchormenu">&nbsp;</p>
Tip:You can add a class that heading tag you wish to exclude from the anchor menu. For example, to exclude the header 3 I used at the top of this page, I used <p id="anchormenu" class="h3">&nbsp;</p>.

Heading Tags with Unique IDs

To populate the anchor menu, add a unique id to each heading tag:

<h3 id="heading">Example Heading</h3>
[content here]
<h4 id="subheading">Example Subheading</h4>
[content here]

Top of page