Join the Soledad Facebook Users Group here
for Share, assistance, discussion, and Updates related to Soledad WordPress Theme.

If you can't create a new ticket - you can send us an email via our contact form and we will get back to you.

Okay
  Public Ticket #1699837
Links within an article
Closed

Comments

  • Annikavb started the conversation

    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!

  •  2,699
    PenciDesign replied

    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 ):

    <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