Is it possible to change the width of the Thank you page contents box?

  • marketlink
    Asked on August 21, 2017 at 11:49 AM

    I would like to change the width so it fits my form header image

     

    Thanks

     

    Katie

  • Jan
    Replied on August 21, 2017 at 1:00 PM

    Yes, it is possible to change the width of the Thank You Page box. Please use the CSS code below:

    .thankyou .form-all {
    width: 200px;
    }

    You can change the width to your preferred value. Here's a guide on How-to-Inject-Custom-CSS-Codes. Here's the result:

    Is it possible to change the width of the Thank you page contents box? Image 1 Screenshot 20

    Hope that helps. Thank you.

  • marketlink
    Replied on August 22, 2017 at 5:11 AM

    Thanks for the response I have applied this which has solved part of the problem however the table with my content is shifted to the right even though I have asked it to align to the left.  See screenshot below

    Is it possible to change the width of the Thank you page contents box? Image 1 Screenshot 20

  • liyam
    Replied on August 22, 2017 at 8:16 AM

    Hello,

    Please replace your injected CSS code with this:

    .thankyou .form-all {
       width: 640px !important;
       max-width: 640px !important;
    }

    If you have questions, please let us know.