I want to change a select tag arrow with an image, and also I want to have another image as hover state, and one for pressed state. And I should do that with CSS2.1 (no CSS3 solution please). How can I do that?

link|improve this question

71% accept rate
You can't do it with CSS. – epascarello Feb 18 at 13:15
feedback

4 Answers

up vote 3 down vote accepted

Whenever I need to style selects I use http://jamielottering.github.com/DropKick/

link|improve this answer
+1. I'll add that too my arsenal, thanks. – Sam Greenhalgh Feb 18 at 13:06
Did you try this: github.com/KensoDev/Stylish-Select ? I want to know if you have tried and still prefer DropKick? – Karine Feb 18 at 13:12
I haven't tried that however dropkick was chosen because it works perfectly with asp:dropdown's that have events triggered on change. Dropkick handles these events perfectly and it is really easy to create multiple themes for selects as well. However I will definitely have a look as you never know when something better may come along – Kurt Logan Feb 18 at 13:21
Thanks for the answer. – Karine Feb 18 at 14:55
feedback

U can use background-image property in "element name":hover,"element":visited

link|improve this answer
But it does not overlap the arrow. – Karine Feb 18 at 13:03
feedback

That is not possible to do with just CSS, you will have to make use of JavaScript to accomplish it.

link|improve this answer
feedback

The only crossbrowser way to style form fields other than text fields and buttons is using JavaScript to implement custom form-controls.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.