Comments Annikavb started the conversationSeptember 4, 2018 at 8:21amIs it possible to link in my article to another section in the same article?So for instance if it is a really long article and I use headers H2 and H3. My headers are:1) Reading 2) Learning 3) Swimming 4) Dancing. In seciton 3) Swimming I write also about reading and want to place a link back to 1) Reading so that the visitor of my site goes back to that sectionLooking forward to your response! 2,700PenciDesign repliedSeptember 4, 2018 at 8:57amHi,You can do that by doing some HTML on "Text" tab on your editor.Example: You have 4 headings like you said:1) Reading 2) Learning 3) Swimming 4) Dancing. The HTML for that will change to ( example ): <h2 id="reading">1) Reading<h2> <h2 id="learning">2) Learning</h2> <h2 id="swimming">3) Swimming</h2> <h2 id="dancing">4) Dancing</h2> And after each heading, you can use HTML like that for create buttons for links to that heading: <ul> <li>Table of content:</li> <li><a href="#reading">Reading</a></li> <li><a href="#learning">Learning</a></li> <li><a href="#swimming">Swimming</a></li> <li><a href="#dancing">Dancing</a></li> </ul> Best Regards,PenciDesign Sign in to reply ...
Is it possible to link in my article to another section in the same article?
So for instance if it is a really long article and I use headers H2 and H3. My headers are:
1) Reading 2) Learning 3) Swimming 4) Dancing.
In seciton 3) Swimming I write also about reading and want to place a link back to 1) Reading so that the visitor of my site goes back to that section
Looking forward to your response!
Hi,
You can do that by doing some HTML on "Text" tab on your editor.
Example: You have 4 headings like you said:
1) Reading 2) Learning 3) Swimming 4) Dancing.
The HTML for that will change to ( example ):
And after each heading, you can use HTML like that for create buttons for links to that heading:
Best Regards,
PenciDesign