msdropdown jquery plugin , how to change font color
I have a problem with the MSDropDown plugin for jQuery. Please take a look at this website: www.baiads.com
The problem is in the search block where you can see some red el开发者_如何学Cements. How can I change the color from white to blue?
These elements show the select option in white, but will not work because the background is white too.
I tried to change my select style but nothing happens.
I tried to change the msdd style file too, but than nothing happens as well.What else should I try?
I'm not 100% sure I'm answering the question. Do you mean the text displayed in the select box?
If you would like the text of the selected option to be a different colour change line 93 of dd.css to -
.dd2 .ddTitle span.ddTitleText {
color: red; /* YOUR NEW COLOUR HERE */
font-family: Georgia,"Times New Roman",Times,serif;
font-size: 16px;
font-weight: bold;
line-height: 33px;
overflow: hidden;
text-indent: 1px;
}
精彩评论