How can I add a custom button to my form?

  • Ionosphere
    Asked on March 21, 2017 at 1:55 AM

    Hi can I add custom buttons graphics that i can put hyperlinks on eg for a button that would take someone from the form to a website home page.

     

    also buttons that will allow to return to the top or bottom of the form

  • Nik_C
    Replied on March 21, 2017 at 7:38 AM

    You could use our Text field to add a button to your form:

    How can I add a custom button to my form? Image 1 Screenshot 50

    And add the below code:

    <p><a class="button" href="http://google.com">Click me</a></p>

    To the Source code of the Text field:

    How can I add a custom button to my form? Image 2 Screenshot 61

    How can I add a custom button to my form? Image 3 Screenshot 72

    And then add the CSS code to your Custom CSS field:

    How can I add a custom button to my form? Image 4 Screenshot 83

    And here is the code:

    a.button {

        -webkit-appearance: button;

        -moz-appearance: button;

        appearance: button;

    border: 2px solid blue;

        text-decoration: none;

        color: blue;

    }

    You can adjust that further with more CSS.

    And change the above HTML code so it will open the link you need.

    Let us know if you have any further questions.

    Thank you!