For all you web developers who may be out there and interested – I’m working hard to ensure that the next version of Stickymap has greater cross-browser support. Today I found that the <form> element of HTML works differently in Internet Explorer than from other browsers such as Mozilla Firefox.
On IE, a lot of blank space is left above and below the form. On Firefox, the form is treated like any other block element.
In order to fix the IE spacing problems with forms and to make it behave more like Firefox, I just added the following lines to my style sheet:
form {
margin: 0px;
padding: 0px;
}