Log in

View Full Version : Highlight form element onFocus



Webiter
08-20-2011, 07:26 PM
Having trouble getting the input fields to highlight onFocus. It works for the textarea field fine!


.data:focus, textarea:focus {color : #009; border : 1px solid #990000; background-color : #ffff99;}

How do I get it to apply to the input fields?

nbeske
08-30-2011, 06:14 PM
You are styling both a class and an element, you need to assign the .data class to the input you want to highlight, the textarea is working because you are styling all textarea elements. We need to see your form code give better advice.