Posts: 10,688
Name: Steven Bradley
Location: Boulder, Colorado
|
Ok I see what you mean. It looks like that extra space below the form is outside of the form itself and inside the table cell. My first thought is to either set the margin of the form or the padding of the table cell or maybe even both.
Where did you try applying the things you mentioned? Was it on the form or the table cell or something else. The space is probably being caused by a default value on one of the elements. I'm not entirely sure which, but probably the form itself.
I had another thought. Maybe setting the form itself to float to the right since that will take it out of the document flow.
td#searchForm form {float:right}
I'm not sure if that will work, but it might be something else to try.
|