Link to home
Start Free TrialLog in
Avatar of fallon12345
fallon12345

asked on

Extra line inserted

The following code will insert a blank line.  How do I prevent this from happening?

<FORM NAME="reloadlogin">
<INPUT TYPE="hidden" NAME="x" SIZE="0">
<INPUT TYPE="hidden" NAME="y" SIZE="0">
</FORM>
</body>
Avatar of maneshr
maneshr

where does it insert a blank line?? can you provide the complete HTML file??
i copied and pasted your code and saw the same in NS and it just showed me a blank page!!


Avatar of fallon12345

ASKER

basically the hidden fields are creating a blank line, so if you put text above the form and below the form the blank line will appear between my first and last names.  I need to get rid of that blank line, but need to keep the hidden text boxes.

<html>
<head>
<title>Summary</title>
<BODY>
Mike
<FORM NAME="reloadlogin">
<INPUT TYPE="hidden" NAME="x" SIZE="0">
<INPUT TYPE="hidden" NAME="y" SIZE="0">
</FORM>
Fallon
</body>
</html>

<html>
<head>
<title>Summary</title>
<BODY>
Mike
<FORM NAME="reloadlogin" style="margin-top: 0; margin-bottom: 0">
<INPUT TYPE="hidden" NAME="x" SIZE="0">
<INPUT TYPE="hidden" NAME="y" SIZE="0">
</FORM>
Fallon
</body>
</html>
Thunderchicken,
Is this supported in IE4, NN4+?
Mike
IE 5.0, yes
netscape 4.7 no...

I'll play around with netscape and see if I can come up with something...

those are the only two browsers I have available right now but I assume so (?)
checked. does not work in NS4.x!!
ASKER CERTIFIED SOLUTION
Avatar of thunderchicken
thunderchicken

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
WOW!!

i works in NS4.x!!

thunderchicken, you are cococooool  :-)

Have a nice weekend.
thanks  :)
i just usually pull my ASP scripts into frontpage 2000 and usually you can format most stuff in there.. that was what i did with that, oh well, have a good weekend too...
Thats odd, your first answer worked on my netscape 4.7

oh well, thanks for the help guys.
Have a good weekend as well.
Mike