If a visitor to your website has downloaded the Google Toolbar and uses Firefox to view your site, form fields with common names (First Name, Email, etc) will display in yellow. To circumvent this design snafu, place the following in your CSS:
input[type="text"] /* To keep form fields consistent */
{
background: #FFF !important;
}
This doesn’t impact the functionality of the Google Toolbar, it just ensures that the fields in your form don’t take on funky colors.
Fix yellow form fields in Firefox
-
Richard



