Anchors are links that when clicked, automatically scroll the user up or down to a specific designated section or header on the same page.
How to Create Anchor Links in the Builder
In order to accomplish this, you must be able to edit HTML; however, the steps are simple and everything is outlined below. The example following is done in the "HTML Text Block" site custom field, but will work anywhere you're editing HTML.
1. Add an ID to the element you want to link to
An element will be the area on the page that the user is sent to when they click on a link. Typically, this is a header or page section, and must be text. For the below example, we are using one of the Section Titles of a page.
Ex: id="learn-more"
is added to the <h3> title tag. You can name this whatever you want. The link will go to the start of that element.
2. Create the link
Next, we just need to link to the ID we just created. Use a Hashtag before the name of the ID you created above to denote where the link should go when clicked.
Ex: <a href="#learn-more">
text</a>
is added surrounding our text to be linked