How do I put dropdown/text boxes closer side by side? I have already shrunken them.

  • andybose
    Asked on July 6, 2014 at 2:28 PM

    Need the dropdown boxes and text boxes to be directly under the column headings near the bottom of my form. Column headings are: Product, rate, units, total, units. I am going to create columns of dropdown and text boxes directly underneath each heading. The first row of dropdowns and text boxes is already there, just needs to be squeezed together to align under the headings.

     

  • jonathan
    Replied on July 6, 2014 at 5:36 PM

    Hi,

    You can fix it by using injected CSS codes.

    I do suggest that you add the label/question names on the form also and use CSS code to move the fields closer together

    How do I put dropdown/text boxes closer side by side? I have already shrunken them Screenshot 30

     

    add CSS code like this

    #id_41,#id_42,#id_43,#id_44{

    margin-left: -30px !important;

    }

     

    How do I put dropdown/text boxes closer side by side? I have already shrunken them Screenshot 41

     

    Hope this help. Inform us if this did not work.

    Thanks!