Form resizing a table cell

  • Thread starter Thread starter Steve O
  • Start date Start date
S

Steve O

Hi group.
I have a problem with inserting a form element into a table.
You can see the problem here:

www.sallyadamsart.co.uk/demo.htm

As soon as I put the Paypal code in, (which is a form to submit data to
their shopping basket) the browser (IE)
puts a line break in making the cell to high. This is really annoying
me...............

The table underneath shows how it should look (I've just put the button in
and left the form code out)

I know it's not strictly a FP problem, and the page looks fine with Firefox,
but I wonder if someone can help me out?
 
Use CSS to redefine the inherent margins on the <form> tag -

table form { margin:0; }

(this will hit every form in every table on the page)
 
Thanks, I'll give it a go.

Murray said:
Use CSS to redefine the inherent margins on the <form> tag -

table form { margin:0; }

(this will hit every form in every table on the page)
 
Brilliant. A bit of messing around to get there, but that's how we learn.
Thanks so much for your time.
 
Back
Top