Is it possible to eliminate the white background (via CSS) in the input and textareas when you click in the field using Safari or any other browser? Here is my link: link text
Cheers.
Erik
Is it possible to eliminate the white background (via CSS) in the input and textareas when you click in the field using Safari or any other browser? Here is my link: link text
Cheers.
Erik
Your :focus
rule overrides it. Make another rule that's more specific to counter that?
.postcard input:focus, textarea:focus {
background:url("/img/pixel.gif") repeat scroll 0 0 transparent;
}