I have written the html but the contact form is copied from a another place...and I cant get rid of that white line no matter what I do.
Can anyone tell me what I did wrong?
NOTE: here it is, on jsfiddle.net
http://jsfiddle.net/j6RMW/embedded/result/ or http://jsfiddle.net/j6RMW/
There the white space is gone....but you can see the screenshot that it is actually there.
NOTE2: this is what causes the problem...it is html issue:
<form name="freecontactform" method="post" action="freecontactformprocess.php" onsubmit="return validate.check(this)">
<table width="400px" class="freecontactform">
<tbody><tr>
<td colspan="2">
<div class="freecontactformheader">Contacto</div>
<div class="freecontactformmessage">Fields marked with <span class="required_star"> * </span> are mandatory.</div>
</td>
</tr>
<tr>
<td valign="top">
<label for="Full_Name" class="required">Nombre/apellidos<span class="required_star"> * </span></label>
</td>
<td valign="top">
<input type="text" name="Full_Name" id="Full_Name" maxlength="80" style="width:230px">
</td>
</tr>
<tr>
<td valign="top">
<label for="Email_Address" class="required">Email<span class="required_star"> * </span></label>
</td>
<td valign="top">
<input type="text" name="Email_Address" id="Email_Address" maxlength="100" style="width:230px">
</td>
</tr>
<tr>
<td valign="top">
<label for="Telephone_Number" class="not-required">NĂºmero de telefono</label>
</td>
<td valign="top">
<input type="text" name="Telephone_Number" id="Telephone_Number" maxlength="100" style="width:230px">
</td>
</tr>
<tr>
<td valign="top">
<label for="Your_Message" class="required">Tu mensaje<span class="required_star"> * </span></label>
</td>
<td valign="top">
<textarea style="width:230px;height:160px" name="Your_Message" id="Your_Message" maxlength="2000"></textarea>
</td>
</tr>
<tr>
<td colspan="2" style="text-align:center">
<div class="antispammessage">
To help prevent automated spam, please answer this question
<br><br>
<div class="antispamquestion">
<span class="required_star"> * </span>
Using only numbers, what is 10 plus 15?
<input type="text" name="AntiSpam" id="AntiSpam" maxlength="100" style="width:30px">
</div>
</div>
</td>
</tr>
<tr>
<td colspan="2" style="text-align:center">
<br><br>
<input type="submit" value=" Submit Form " style="width:200px;height:40px">
<br><br>
<br><br>
</td>
</tr>
</tbody></table>
</form>
I am new to this. Thanks for the info so far...and I'll keep this updated and let you guys know if I can sort it out on my own.
