Form Layout

  • wordpressnerdster
    Asked on April 1, 2019 at 4:29 PM

    Is it possible to center all the content on the form?

    Also, can you reduce the top and bottom padding some on each question or entry?

  • Victoria_K
    Replied on April 1, 2019 at 5:57 PM

    May I ask how exactly you would like to center the content? Would it be something like on a screenshot below? 

    Form Layout Image 1 Screenshot 20

    If so, please try the following CSS code, it also includes code to reduce padding:

    .form-line-column {

      width: 50%;

      padding-top: 0.3em;

      padding-bottom: 0.3em;

    }

    .form-input-wide, .form-header, .form-line.form-line-column, .form-label {

      text-align: -webkit-center !important;

    }

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