Hi Todd,
The issue is this…
You’re adding the themes custom style sheet and not creating a file called ‘custom.css’ as I described so your style is not getting processed to the final page.
I opened the page in Firefox and used Firebug and I could see:
textarea, input[type="text"], input[type="email"], input[type="password"], select {
background: none repeat scroll 0 0 #F6F6F6;
border: 1px solid #CFCFCF;
color: #626262;
}
I changed in Firebug to:
textarea, input[type="text"], input[type="tel"], input[type="email"], input[type="password"], select {
background: none repeat scroll 0 0 #F6F6F6;
border: 1px solid #CFCFCF;
color: #626262;
}
..and it worked perfectly.
Please go through the other post referenced and try making the changes in a dedicated file called ‘custom.css’ and add as I detailed to header.php – even if your themes custom css is being processed it is being over written on file output.
Let me know how it goes or if you need any help.
Rog.