dhtmlxform - line up html input elements JSON

How do you line up multiple HTML input elements in dhtmlxform with JSON? The form is instantiated by an object using JSON?

/Thanks

Can you provide some more explanation, what do you mean by “lineup” ?

I’d like to have two input elements on the same row. For an example;

zip code state
xxxxxx xxxxxx

The default when creating the object is on each other.

var formData = [
{
type: “input”,
width: 50,
name: “c_zip”,
value: “”,
label: “Zip code”

},
{
   // I want this on the same line as zip code above
	type: "input",
	width: 50,
    name: "c_state",
    value: "",
	label: "State"

}.......

Kindest
/Kent