PLEASE NOTE: These forums are no longer utilized and are provided as an archive for informational purposes only. All support issues will be handled via email using our support ticket system. For more detailed information on this change, please see this blog post.

Fields on new rows

  1. neilpete10
    Member

    Hi,

    I'm trying to design a form that is single column, but when I add the Name or Password fields to the form then two fields appear side by side in the same row (First Name / Second Name) and (Password / Confirm Password). How do I make each field appear in a separate row, one above the other?

    Neil

    Posted 11 years ago on Monday March 11, 2013 | Permalink
  2. rcDev
    Member

    Hey Neil,

    You need to use CSS. Trying adding this to your stylesheet:

    .gform_wrapper .ginput_complex .ginput_left,
    .gform_wrapper .ginput_complex .ginput_right{
         float: none;
         width: 100% !important;
    }

    -Mark

    Posted 11 years ago on Monday March 11, 2013 | Permalink