Is it possible to customize the color of the form on the thank you page

  • PrototypeNextGen
    Asked on January 3, 2019 at 6:47 PM

    Hi,

    Is it possible to customize the color of the form on the thank you page (similar to the rest of the form?  I would like to to change just the color on the thank you page and add more formatting to it.

    Thanks

  • jherwin
    Replied on January 3, 2019 at 10:58 PM

    To edit the thank you page image or design, click on the Thank You page then select source code to edit the image link. Save the changes after and the thank you page should show as designed. 

    1546574138code Screenshot 10

    For further assistance do let us know.

  • jherwin
    Replied on January 3, 2019 at 11:18 PM

    You can also add this custom CSS code to your form if you want to change all the background color of your thank you page.

    .thankyou {

        background-color : #FFA500 !important;

    }

    #stage.form-all {

        background: #FFA500;

        background-repeat: repeat;

        background-attachment: scroll;

        background-position: center top;

        background-size: auto;

        width: 100%;

        max-width: 690px;

        margin: 36px auto;

        padding: 35px 29px;

        -webkit-box-shadow: 0 4px 4px -1px rgba(0,0,0,0.1);

        box-shadow: 0 4px 4px -1px rgba(0,0,0,0.1);

    }

    Guide: How to Inject Custom CSS Codes.

    Result Screenshot (change the color to your preference):
    1546575430thankspage Screenshot 10