Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

DW Form Question

Status
Not open for further replies.

sss123

Programmer
Nov 28, 2001
12
0
0
US
Hi Everyone,
Why is it that when I create a form in DW, it adds so much space inbetween rows? I don't want all of the extra space in there...any suggestions? I know neater forms can be created in DW.

Thanks for the help,
sibyl
 
suggestion: use tables put a component by cell and you ll be a happy camper. then if you don't want to see that awful table change the color of the border to the backgroud colour
Cheers

jodie
 
I'm sorry, I'm not sure I understand. Do you mean a something like a transparent gif?

thank you,
sibyl
 
or set the border to "0"

Cheech

[Peace][Pipe]
If you don't stand up for something, you'll fall down. Toke it Easy.
Howard Marks.
 
thats o.k. in dw it may look like a line is inserted but when u load the page u cannot see it. it is just a visual aid.

Known is handfull, Unknown is worldfull
 
ss123:

no not a transpatret gif
1 place a form in yr page
2 inside the form click in add table an icon like this

---------------
| | | |
---------------
| | | |
---------------
| | | |
---------------

you will be able to use it only if you are in default view
3inside a cell add your elements (like tet field, list, buttons etc) one by each cell
that has to solve yr problem if you put this code in your code view you will be able to see what i mean



<!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.01 Transitional//EN&quot;>
<html>
<head>
<title>Untitled Document</title>
<meta http-equiv=&quot;Content-Type&quot; content=&quot;text/html; charset=iso-8859-1&quot;>
</head>

<body>
<form name=&quot;form1&quot; method=&quot;post&quot; action=&quot;&quot;>
<table width=&quot;75%&quot; border=&quot;1&quot;>
<tr>
<td><label>
<input type=&quot;text&quot; name=&quot;textfield&quot;>
</label></td>
<td><label>
<input type=&quot;text&quot; name=&quot;textfield2&quot;>
</label></td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&nbsp;</td>
<td>&nbsp;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&nbsp;</td>
<td>&nbsp;</td>
<td>&nbsp;</td>
</tr>
</table>
</form>
</body>
</html>


Cheers
 
Thanks for your responses. I think I figured out what the problem was. I had reformatted my H1 tag and it was adding a carriage return after each cell.

Thanks again!
sibyl
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top