How do you get rid of the extra space that appears on my web page after the <form> tag?
Option 1. Use a bit of CSS coding.
The margin can be adjusted to an Hx tag as well.
Now there won't be that huge spacing around any H1 tags.
Option2. Move the form tags to where they cause no harm.
If the form is inside a table layout, try moving the form tag to the outsides of the table instead.
Option 1. Use a bit of CSS coding.
| form {margin-bottom: 0px;} |
The margin can be adjusted to an Hx tag as well.
h1 {margin:0px;}
Now there won't be that huge spacing around any H1 tags.
Option2. Move the form tags to where they cause no harm.
If the form is inside a table layout, try moving the form tag to the outsides of the table instead.

