How can I add a footer or text at the end of a form?

  • sashen84
    Asked on June 13, 2019 at 10:25 AM

    Hi, I would like to add a footer or similar at the end of the form created.


    Please advise.

  • Alan_D
    Replied on June 13, 2019 at 11:58 AM

    Unfortunately, we do not have directly a footer element in the forms. You can add the text or header fields as a footer at the end of the form. How can I add a footer or text at the end of a form? Image 10
    I can recommend you this code if you want a footer like a JotForm ad. Please inject this code into your form CSS. 
    ul.form-section.page-section:after{
      content: "I am footer!";
      height: 40px;
      position: fixed;
      left: 0;
      bottom: 45px;
      width: 100%;
      background-color: grey;
      color: white;
      text-align: center;
      padding-top: 20px;
      z-index:2;
    }
    How can I add a footer or text at the end of a form? Image 21You can change the text in the new footer from the line I highligted. How can I add a footer or text at the end of a form? Image 32