views:

9

answers:

1

is it possible to edit the arrow which we get in the select tag (Rails)

I want to replace the arrow which we get in the select tag(drop down element) with my own image..

Is it possible to do the same?

+1  A: 

It's not possible to do that with the <select> tag. There're solutions to replace it with <ul>/<ol> and some Javascript.

See answers to question Is it possible to style a select box?.

Matt
I recommend this as a design pattern in general because every browser puts selects together completely different.
Trip