Forum Moderators: not2easy
--------------------------
By default a FORM is a so called block element (like a DIV) being a
box
with top and bottom margin.
You should be able to change the display attribute of an HTML element
to inline using
<FORM STYLE="display: inline;" ...>
though only IE4+ seems to correctly interpret this.
Try this
<HTML>
<HEAD>
<style type="text/css">
<!--
form { margin-top: 0px; margin-bottom: 0px}
-->
</style>