• Hi there,

    I just installed your plugin, and it’s very useful! I think that forms, like a login form or a registration form, look better with a multi column layout. Because it’s not worth using the entire page width, for a form element like “Firstname”, “Lastname”, “Zipcode”, etc.

    But to accomplish this, it would be required to have the form fields in a separate div, so I could you the grid-layout to make a 2 column layout.

    <fieldset style="display:grid;grid-template-columns:1fr 1fr; gap: 40px;>
       <div>
          <label>Firstname</label>
          <input type="text"/>
          <!-- possibly error message, etc. -->
       </div>
       <div>
          <label>Lastname</label>
          <input type="text"/>
          <!-- possibly error message, etc. -->
       </div>
    </fieldset>

    Like it is implemented now, it’s not so easy to make a 2-column-layout.

    Thank you very much for this useful plugin!

    All the best

    Metayota

    The page I need help with: [log in to see the link]

  • The topic ‘Multi-Column Forms’ is closed to new replies.