 Holly
|
How do I add an anchor inside of a page – I’d like to link something at the beginning of the page that brings the reader to another place on a page when the link is clicked?
|
 Jeremy Clark
|
You’ll need to switch over to your html editor when writing the post and then add this to where you want the anchor to be at.
a name="anchor"></a>
Then the link will look like this.
<a href="#anchor">Link to Anchor</a>
|