Announcement

Collapse
No announcement yet.

Multiple links on FAQ page

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Multiple links on FAQ page

    Hello Gurus,

    I have an FAQs page and would really like, if possible, to have links at the top of the page, in the form of the question, to the relevent answer below. Is this possible?

    http://www.pogglers.net/acatalog/FAQs.html

    many thanks,

    Pogglers

    #2
    Covered before - try searching for links and anchors

    Comment


      #3
      Yes but you need to manully add and maintain some code.

      You can put an anchor into each fragment answer and the create links in another fragment at the top that links to the anchors on the page.

      So in the top fragment you would put something like:
      Code:
      !!<
      <a href="#Answer1">Question1</a>
      <a href="#Answer2">Question2</a>
      ...
      >!!
      Then further down the page you make your answer fragments something like this:
      Code:
      !!<
      <a name="Answer1"></a>
      >!!
      Answer1
      and:
      Code:
      !!<
      <a name="Answer2"></a>
      >!!
      Answer2

      Comment


        #4
        Thank you very much.

        I did do a search before I posted on 'multiple links' but didn't find what I was looking for. I'm afraid I've never heard of anchors before as I'm not really a code writer.

        Comment

        Working...
        X