Mr Dave,
> I was just wondering, does anyone know a way of stopping an extra line
from
> being created after a form tag has been closed?
Use a stylesheet:
<style type="text/css">
<!--
form
{
margin: 0px ;
}
-->
</style>
This should get rid of that extra space in IE.
James Aylard