How can I change the words in the button that starts the form?

  • Mirabet3
    Asked on March 18, 2021 at 11:53 AM

    when you click on my forms url and are redirected to the start page, there is a button that says Start Filling ... I want to change this to say something different. How can I change this??

  • Gaetan_B
    Replied on March 18, 2021 at 4:18 PM

    Hello,

    Thank you for reaching out.

    It is not currently possible to change the Start Filling text in the form builder. I'll open a feature request for this so this will be possibly added in a future update.

    For now, you can change the text by injecting the following CSS codes to your form.

    .welcome span {

      font-size: 0;

      visibility: hidden;

    }

    .welcome span:before {

      content:"Start Now";

      font-size: 20px;

      visibility: visible;

    }

    Change the bold text Start Now to your preference.

    Guide: How to Inject Custom CSS Codes


    Hope this helps.

    Do not hesitate to reach out if you need further assistance.