To get them to line up on the same row you just need to make sure there is nothing between two select box short codes in the Contact form editor. You can have a space just as long as there are no breaks or returns.
For instance, here is a drop down next to a text box;
[select* State "States"] [number* ZipCode class:zip "Zip Code"]
I’ve found that the form maker will add <br>
and <p>
tags for you.
So if you do this;
[select* State "States"]
[number* ZipCode class:zip "Zip Code"]
It will add a <br>
tag after the first line, but if you do this;
[select* State "States"]
[number* ZipCode class:zip "Zip Code"]
It will add a <p>
tag after the first line.