Unable to edit background image in Thank you Page

  • reddingrancheria
    Asked on August 10, 2020 at 5:03 PM

    Hi,

    I have a background image for my form. While filling the form, the background image is not repeated, it is a single image covering the whole page. But in the thank you page, the background image is repeated as tiles. I want to have a single image. How can I achieve this?

    Jotform Thread 2503322 Screenshot
  • David JotForm Support Manager
    Replied on August 10, 2020 at 10:20 PM

    Thank you for contacting us. Please try injecting the following CSS code: https://www.jotform.com/help/117-How-to-Inject-Custom-CSS-Codes

    .supernova {

        background-attachment: fixed;

        background-size: cover;

        background-repeat: no-repeat;

    }

    body.thankyou {

        background-attachment: fixed;

        background-size: cover;

        background-repeat: no-repeat;

    }

    Result:

    1597112391result Screenshot 10

    Let us know if you need more help.

  • reddingrancheria
    Replied on August 11, 2020 at 12:14 PM

    This worked for me! Thank you BDavid!