I don't know how to chang the color of arrow on listbox ? Any one gives me a hand ??? Show me how to custom the listbox with CSS...Thank so muchWelcome to the forums.
The <select> element (as opposed to generally any other element) is unresponsive some of the CSS rules you apply to it, and I do not believe there is a way to change the arrow color or any other aspect of how the arrow is rendered. You could, however, attempt to emulate it with JavaScript but this is of course not recommended due to the fact that it would rely on JavaScript leaving 13% of your users unable to use it.As Fred said, I'm not aware of a way to change the colour of an arrow in a listbox, you can change the background colour/text colour though, is this what you're looking for:
form select option{
background-color: #FEFEE4;
color: #317B6B;
}
HTH
The <select> element (as opposed to generally any other element) is unresponsive some of the CSS rules you apply to it, and I do not believe there is a way to change the arrow color or any other aspect of how the arrow is rendered. You could, however, attempt to emulate it with JavaScript but this is of course not recommended due to the fact that it would rely on JavaScript leaving 13% of your users unable to use it.As Fred said, I'm not aware of a way to change the colour of an arrow in a listbox, you can change the background colour/text colour though, is this what you're looking for:
form select option{
background-color: #FEFEE4;
color: #317B6B;
}
HTH