On Wed, 2 Nov 2005 13:17:38 +0000 (UTC), "Ken Bruggeman"
<webforumsuser (AT) macromedia (DOT) com> wrote:
Quote:
It looks beautiful in design view, and in IE browser (believe it
or not!) |
But it cannot possibly work in any browser. You have 12 separate forms
on the page because each of your objects is in separate <form> </form>
tags. It is the inherent margin on the <form> tag that is giving you the
odd spacing.
Fix this by first removing ALL of the <form> and </form> tags from the
existing page. Then change this:
<td height="522" colspan="10" background="images/Contact.jpg"><table
width="666" border="0" align="center" cellpadding="2" cellspacing="2">
To this:
<td height="522" colspan="10" background="images/Contact.jpg">
<form method="post" action="">
<table
width="666" border="0" align="center" cellpadding="2" cellspacing="2">
And change this:
</table></td>
</tr>
<tr>
<td colspan="10" background="images/Footer.jpg" class="style10">
To this:
</table></form></td>
</tr>
<tr>
<td colspan="10" background="images/Footer.jpg" class="style10">
Note that, until you assign something to he form's action attribute, the
form still won't do anything.
Gary