I have searched far and wide on the Internet but have not found anything helpful regarding how to style the dropdown portion of a dropdown list in a form. I would appreciate a pointer in the right direction. Thanks.
feedback
|
|
As mentioned above it's pretty much impossible to do using straight html, I have had good results with jQuery Combobox though. | |||
|
feedback
|
|
You can apply styles using the SELECT selector or applying a classname to a SELECT element. However, you'll run into issues with IE < 8 applying things like borders to the element. You can then target options by using the OPTION selector.
Should give you a drop down with a red border (if using FF or IE8 in Standards mode) with bold text, and the options should be italic with a green background. | |||
feedback
|
|
I've been working on the same problem for a while. Came up with a pretty simple solution using a holder div that is shorter then the dropdown itself. I also use a background image to get the dropdowns arrow to look the way I like. Check it out http://www.danielneumann.com/blog/how-to-style-dropdown-with-css-only/ | |||
|
feedback
|
|
Its possible, but convoluted to say the least. You can't actually style the drop down portion of a drop down list consistantly across different browsers as they all support them in different ways (I mean really varied support). When I had a problam like this a few months ago, the only solution I found was to, using javascript, convert the drop down list into a ul/li drop down menu, which I could style. Of course there are numerous event that need handling, like selecting a value. Luckly there's a plugin for JQuery that allows this be a trivial task. Checkout the selectbox replacement plugin for JQuery from Brainfault: http://www.brainfault.com/jquery-plugins/jquery-selectbox-replacement/ | |||
|
feedback
|