Link to home
Start Free TrialLog in
Avatar of carldpatterson
carldpatterson

asked on

Opening and closing forms

I need to close and open a form, but I end up with a blank gap between the tables. The background colour is white and I need the gap to be two colours to match the style of the other pages.

Thanks,

Carl
Avatar of hkmdj
hkmdj

could you include some code to clear this up?  Not sure from your question what you are looking for.
ASKER CERTIFIED SOLUTION
Avatar of davlun20080
davlun20080

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
It doesn't really matter where you place your form tag...just don't place it outside a layer and form elements inside the layer.

Anyway, since you want to colors, you can use a table, and the first cell you use blue the other cell black

like

<form>
<table>
<tr>
<td bgcolor=blue>
....
</td>
<td bgcolor=black>
....
</td>
</tr>
</table>
</form>