1

I’m trying to figure out how I can go about styling a disabled multiple select element, for google chrome so you can see the selected items.

I’ve seem to have it working in:

Mac: firefox, safari and chrome PC: ie7, ie8, and firefox

It’s just the windows version of chrome that’s not working (see image).

google chrome issue

How can a go about change the foreground color, or the disabled selected color so you can read the selected text?

Thanks

Adam
  • 2,632
  • 8
  • 34
  • 60

1 Answers1

4

I don't entirely understand your goal, but I ran into a similar problem in Chrome on Windows trying to style a select element (not disabled). The element was given a white background by the browser and I could not override it, until I tried this:

{ -webkit-appearance: none; }

And it worked! I hope this helps.

Source: Background Image for Select (dropdown) does not work in Chrome

Community
  • 1
  • 1
Mark Pruce
  • 945
  • 10
  • 25
  • Somehow if you test through chrom firebug it won't affect, but changing the CSS with that it does work. – Cesc Feb 18 '14 at 02:59