replied on March 20, 2015
Hi Brandon,
Normally to position fields next to each other you would apply inline-block to both of the values and as long as there was enough horizontal room on the page they would appear side by side. If there wasn't enough room, they would end up stacking.
Displaying fields side by side
In the CSS section of the Script page, insert the following code, replacing ID with the ID of the specified field. You can see the id and class for each field on your form by clicking Show CSS Selectors, which should be enabled by default.
You can display fields side by side using the styling the display property. This is useful if you have more than two fields that should be displayed side by side. With this method you must also specify the width of each element. When the height of each element is different, specify that they should be vertically aligned with the top of their container.
#ID1, #ID2, #ID3 {display: inline-block; width: 30%; vertical align:top;}
http://www.laserfiche.com/support/webhelp/laserficheforms/9.0/en-us/forms/Content/CustomizingYourFormCSS.htm
If this doesn't work it out, would you mind pasting the CSS?
Cheers,
Carl