Centering your Logo Image or CAPTCHA (Responsive Forms)

You are here:
< Back

By default, the logo image on your Responsive Form will be left-justified.

To center this image, click the HTML tab in the text editor for the Header section (on the Settings tab)  and add this line of code to the top of it:
<style>
#DSFormLogoID {margin-left: auto; margin-right: auto;}
</style>

In a similar way, if you with to center the CAPTCHA at the bottom of the form, click the HTML tab in the text editor for the Header section (on the Settings tab)  and add this line of code to the top of it:
<style>
@media (min-width: 768px){#reCaptchaContainer {margin-left: -45%;}}
@media (min-width: 992px){#reCaptchaContainer {margin-left: -35%;}}
@media (min-width: 1200px){#reCaptchaContainer {margin-left: -30%;}}
</style>

Tags:
Table of Contents