Change Background of Thank you Page

  • forumgestaoestrategia
    Asked on May 13, 2015 at 3:26 PM

    In the thank you page, I need to put the same form background: http://www.gestaoestrategia.com.br/mobile/back.jpg

     

    But he needs to pick up the entire screen, the same as the form.

     

    Current HTML:

    <p>&nbsp;</p>

    <div style="width: 100%; height: 1080px; background-color: #232323; text-align: center;">

    <h1><img style="border: 0;" src="//www.gestaoestrategia.com.br/mobile/logoge.png" alt="Gest&atilde;oLogo0" width="335" height="129" /></h1>

    <h1><span style="font-size: medium; font-family: arial, helvetica, sans-serif;"><br /></span></h1>

    <h1><span style="font-size: medium; font-family: arial, helvetica, sans-serif; color: #ffffff;">Confirmamos o preenchimento das seguintes credenciais:</span></h1>

    <p><span style="font-family: arial, helvetica, sans-serif; font-size: medium; color: #ffffff;">Participante 01</span><span style="color: #ffffff; font-family: arial, helvetica, sans-serif; font-size: medium;">: <strong>{nomeCompleto3}</strong></span></p>

    <p><span style="font-family: arial, helvetica, sans-serif; font-size: medium; color: #ffffff;">Participante 02</span><span style="color: #ffffff; font-family: arial, helvetica, sans-serif; font-size: medium;">:&nbsp;<strong>{nomeCompleto119}</strong></span></p>

    <p><span style="font-family: arial, helvetica, sans-serif; font-size: medium; color: #ffffff;">Participante 03</span><span style="color: #ffffff; font-family: arial, helvetica, sans-serif; font-size: medium;">:&nbsp;</span><strong><span style="color: #ffffff; font-family: arial, helvetica, sans-serif; font-size: medium;">{nomeCompleto134}</span></strong></p>

    <p>&nbsp;</p>

    <p><span style="font-family: arial, helvetica, sans-serif; font-size: medium; color: #ffffff;"><strong><br /></strong></span></p>

    <p><span style="font-size: medium; font-family: arial, helvetica, sans-serif; color: #ffffff;">O c&oacute;digo de confirma&ccedil;&atilde;o de seu credenciamento &eacute;:&nbsp;<strong>{numeroDe49}</strong></span></p>

    </div>

  • Kiran Support Team Lead
    Replied on May 13, 2015 at 4:21 PM

    Please remove the first two lines of the current html (blue color highlighted below) and replace with the following code (Yellow color highlighted) in order to have the background image on your thank you page.

    <p>&nbsp;</p>

    <div style="width: 100%; height: 1080px; background-color: #232323; text-align: center;">

    to be replaced with

    <div style="background-size: cover; background-image: url(http://www.gestaoestrategia.com.br/mobile/back.jpg); background-repeat: no-repeat; background-attachment: fixed; text-align: center;">

    Making these changes on your Thank you page HTML source, thank you message should be displayed as below :

    Change Background of Thank you Page Image 1 Screenshot 20

    Hope this information helps! Let us know if you need any further assistance. We will be happy to help.

    Thanks!

  • forumgestaoestrategia
    Replied on May 14, 2015 at 7:32 AM

    Hello Kiran, good morning!

     

    Thanks for the quick return, as always support you is always fast and correct.

     

    I forgot to mention, but the background of the page needs to stay on the entire page, need to fill out the red part well.

     

    Can you help me?

     

    one more time thank you!Change Background of Thank you Page Image 1 Screenshot 20

  • Kiran Support Team Lead
    Replied on May 14, 2015 at 9:31 AM

    Please try replacing the <div> element in the beginning of the code with the following :

    <div style="background-size: cover; background-image: url(http://www.gestaoestrategia.com.br/mobile/back.jpg); background-repeat: no-repeat; text-align: center; height: 100%; width: 100%; position: fixed; left: 0; top: 0;">

    This is how it looks like after replacing with the above code :

    Change Background of Thank you Page Image 1 Screenshot 20

    Hope this information helps!