They're spaced out because I think they look better that way.... Also, I don't find them excessively spaced, but that's just one opinion.
But you can easily adjust that in the css. Also, notice the zip code is out of whack, you just need to change
LABEL.inputLabel {
width:85%;
float:left;
margin:0.3em;
}
to
LABEL.inputLabel {
width:90%;
float:left;
margin:0.3em;
}
You can remove that margin:0.3em; from the above, and that will decrease spacing, and also in the css, you can adjust the margin for the INPUT tag, to decrease spacing.




Reply With Quote
