Form Page Alignment: Form ID: 62895350772162

  • scamanager
    Asked on October 18, 2016 at 10:26 AM

    I selected one of your themes and modified it. The form is displaying on the right of the screen. I would like it to float center or left align. Form ID 62895350772162. Can you assist?

  • Kevin Support Team Lead
    Replied on October 18, 2016 at 12:10 PM

    If you would like the form to be centered you should inject this CSS code: 

    .form-all {

        margin-left: auto !important;

        margin-right: auto !important;

    }

    And if you would like the form to be aligned to the left this code will help: 

    .form-all {

        float: left;

        left: 4%;

    }

    This guide will help you to inject the code to your form: How-to-Inject-Custom-CSS-Codes

    If you have any question, please let us know.