• Resolved mpgeorge

    (@mpgeorge)


    I’m sure this has a very simple answer; I’m trying to link to a paragraph further down on the same page

    So on https://www.conflictoflaws.net/about/editors/ , I’d like to have a link to each person’s profile, and when you click on it it “jumps” to that person’s profile on the page.

    Any help would be much appreciated.

Viewing 2 replies - 1 through 2 (of 2 total)
  • This is some relatively simple HTML coding.

    For the person profile (the target) you need to put the following HTML tags around the title (where you want it to jump to):
    <A name=”NameHere”>TitleHere</A>

    This will create an “anchor” around that title.

    Now, in order to create a link that jumps to that anchor, you need to modify the usual way a link work. The following would jump to the above anchor:

    <A href=”#NameHere”>LinkText</A>

    Try it out. If I’m not being very descriptive, ask again and I’ll describe it a bit better.

    Or a search for ‘anchors links html’ should bring up some good results.

    Cheers,
    Lloyd
    https://www.LloydMorgan.co.uk

    Thread Starter mpgeorge

    (@mpgeorge)

    Lloyd,

    Many thanks! Works like a charm, although one should note that the WYSI-Wordpress editor plugin has to be deactivated before it works in the HTML editor.

    Cheers.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Link to place on same page’ is closed to new replies.