create page numbers on the form and have an external link to a web address

  • SICDCOT
    Asked on April 3, 2017 at 2:03 PM

    I have a form that has three pages and would like to show "page 1 of 3" etc. at the bottom

     

    I also want to include an external link to a government website in my form. Is this possible?

  • Sven
    Replied on April 3, 2017 at 3:31 PM

    You can achieve that by add a TEXT element to your form and writing the page number inside, you can place the text element anywhere you want on your form. 

    create page numbers on the form and have an external link to a web address Image 1 Screenshot 20

     

    As for your second request, you can achieve that again by adding a text element, and add the following HTML code:

    <a target="_blank" href="YOUR_URL">YOUR TEXT</a>

    please make sure to replace YOUR_URL with the URL to your external link, and YOUR TEXT with whatever text you would like to appear on the hyperlink.

     

    Thank you