Click to See Complete Forum and Search --> : Odd spacing occurring...
thejoker101
06-09-2003, 12:11 AM
I'm having some unwanted spacing show up in Mozilla 1.3, Opera7 and NS7, works fine in IE6. The spacing is between the white box and the silver one above it, they should be connected. Just wondering how I can get rid of that.
Here is the test page link:
http://pyro.hostignition.com/~dionysus/the17thdegree/testing.html
Thanks.
Charles
06-09-2003, 05:22 AM
That's a bottom margin from your FORM.
And by the way, it would be helpful to some of your disabled users if you used the LABEL element in place of a few of your SPANs. See http://www.w3.org/TR/html4/interact/forms.html#edef-LABEL.
<form action="identityCheck.jsp" style="margin:0px">
<div class="head2">Author Log-In</div>
<div id="loginSection">
<label class="head4">User Name:<br/>
<input class="tfield" type="text" name="username"/></label><br/>
<label class="head4">Password:<br/>
<input class="tfield" type="password" name="password"/></label><br/><br/>
<span class="center"><input type="image" src="i/login.gif" alt="Log-In"/></span>
<br/><br/>
</div></form>
thejoker101
06-09-2003, 12:01 PM
Thanks that worked. Also, thanks for the comments about using label.