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 TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

how can you edit form height?? 1

Status
Not open for further replies.

toeter

Technical User
Apr 29, 2003
33
DE
I have entered a submitbutton into a form in a table,

when I use live data to preview it looks fine, form within table fits fine....

but when I preview it with the browser, I see that the height of the form is higher than it actually has to be, so I see a submitbutton within the table but the height of the table is twice as big a the submitbutton

__________
|SUBMIT | ''' |
| ______| ''' |
|_________|

It has not to do with centering, top or middle bottem outlining of your table....
You can't edit your form with height="" either


How can you solve this problem??
 
I suggest you go into the HTML and wrap the <form> tag around the <tr> or <td> you are using.
That will get rid of the spacing but DW will not display the red form border.
 
thx, but I used a CSS, to get rid of it:

margin set to 2px
 
I suggest you go into the HTML and wrap the <form> tag around the <tr> or <td> you are using.
That will get rid of the spacing but DW will not display the red form border.


no no no no no no no...BAD TAG
that is as if you sign your name on DriversLicen in format:
MyFiRstName mYLAstName

it works..people can read...but.....

good call on CSS! :)
 
<input type=&quot;text&quot; name=&quot;words&quot; value=&quot;Search&quot; maxlength=40 size=10 style=&quot;width:60px;height:20px;font-size:8pt;&quot;>


The style attribute (part of CSS) does this very nicely.
You can make all your submit buttons, textboxes, anything
any size with it.

MG

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top