I have the following code
CSS
select.select {
color:#FFFFFF;
height: 15px;
width: 105px;
background:#996633
}
HTML
<select class="select" title="Select A Value">
<option></option>
<option>1</option>
<option>2</option>
<option>3</option>
<option>4</option>
</select>
In the following code I am able to change the font color of select box but I don’t know how to change the color of title in <select> Tag. Can any one help me with this?
The reference I got from
http://cssglobe.com/post/8802/custom-styling-of-the-select-elements
The above site
Do one thing. I have cheked the site you provided. You may find
span.selecton the CSS. just addyour required color there
for example
I think your problem will be solved..
It was not CSS or HTML Problem. The Title Tag is coming from jquery. Thanks for giving the link. Your JSFiddle example doesn’t show your actual query as you did not provide all of the information there