Preview Before Submit: Background image not padded from form fields

  • vinnydabody
    Asked on June 6, 2016 at 12:18 PM

    I am using preview before submit on my form https://form.jotform.com/61568766725167:

     

    Preview Before Submit: Background image not padded from form fields Image 1 Screenshot 30

     

    However, Preview Before Submit, the background image is crashing over the form title and text:

    Preview Before Submit: Background image not padded from form fields Image 2 Screenshot 41

    Can this be fixed with custom CSS? This is an old form cloned from last year.

  • Mike
    Replied on June 6, 2016 at 2:26 PM

    Please try adding the next CSS to fix the background image positioning issue in preview container.

    #previewContainer {
    margin-top : 200px !important;
    }
    @media only screen and (max-device-width: 550px) {
    #previewContainer {
    margin-top : 200px !important;
    }
    }

    Preview Before Submit: Background image not padded from form fields Image 1 Screenshot 20

    If you need any further assistance, please let us know.

  • vinnydabody
    Replied on June 6, 2016 at 2:39 PM

    Perfect, thank you!