How can I adjust the margins on my form?

  • markclevenger
    Asked on April 23, 2019 at 3:57 PM

    How can I adjust the margins on my form?

     

  • jherwin
    Replied on April 23, 2019 at 4:27 PM

    Please try to inject the following CSS code to reduce padding of form lines:

    .form-line {
      padding-right: 10px !important;
      padding-left: 10px !important;
    }

    If you want to center align your form when viewed using mobile, please use the code below:

    .form-all { margin: auto!important;}

    Guide: How-to-Inject-Custom-CSS-Codes