Newbie HTML/CSS tip: An old bane of the web developer is how many browsers move to the next line when they encounter a closing form tag. The inconsistency of this behavior causes many to resort to opening forms as high as possible and closing them as low as possible, or wrapping forms in tables, or whatever. CSS to the rescue! To inline a form:
<form action="..." style="display: inline;">...</form>
This can be applied in the reverse as well. For example, instead of wrapping your tag in a or
to force it to be on its own line, apply "display: block;" to the style. tags, begone!