views:

15

answers:

1

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

+1  A: 

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;
}
meder
Wow.. That did it thank you!!!
Erik