Very weird HTML bug. The background to this form field shows up yellow, while it should be white. Some of the form fields are correct, others, have the yellow background.
In some form fields it seems to depend on the name in the table cell above. See: here
while the background in the first form field is correct here. The only difference in the two html-files is that text in the table-cell above the form-field. In the first it's "name" (yellow background), in the second it's "First and Lastname'.
Does anyone have a clue?
Code:<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> <title>Untitled</title> </head> <style type="text/css"><!-- td,tr,th,table { font-family:Verdana, Arial, sans-serif; color:#003366; } .textContent { left:100px; width:500px; font-size:12px; } .textFormFieldDescription{ font-size:11px; font-weight:bold; background-color:#FFFFFF; } --></STYLE> <body> <form method="POST" action="services_quote_email.php" onSubmit="return false;"> <table cellspacing="0" cellpadding="8" border="0" width="90%" height="90%"> <tr> <td width="100%" class="textContent" valign="top">name:</td> </tr> <tr> <td width="100%" valign="top"> <input type="text" name="namefull" id="namefull" class ="forminputfield" type ="text" size ="50" maxlength="50"> </td> </tr> <tr> <td width="100%" class="textContent" valign="top">Company:</td> </tr> <tr> <td width="100%" valign="top"> <input type="text" name="company" id="company" class ="formInputField" type ="text" size ="50" maxlength="50"> </td> </tr> <tr> <td width="100%" class="textContent" valign="top">eMail:</td> </tr> <tr> <td width="100%" valign="top"> <input type="text" name="emailAddress" id="emailAddress" class="formInputField" type="text" size="50" maxlength="50" > </td> </tr> </table> </body> </html>




Bookmarks