How can I add background image in my form

  • Apl1956
    Asked on September 10, 2016 at 7:03 PM

    How can I add a sports background  to my form

    Jotform Thread 929175 Screenshot
  • BJoanna
    Replied on September 11, 2016 at 6:27 AM

    If I understood you correctly, you want to add image you provided as background image of your form. You can add it inside of Form Designer. 

    Form Designer Tutorial: Background Images

    You can also add it with CSS. 

    .jotform-form {

        background-image : url('http://your-image.com/here.png');

        background-size : 100% 100% !important;

        background-repeat : no-repeat;

        background-attachment : fixed;

    }

    Replace http://your-image.com/here.png with URL of your image.

    Hope this will help. Let us know if you need further assistance.