Is there a good workaround to allow you to display custom made disabled form fields in IE? (input[disabled] does not work fully in IE)
I have searched the net and found a javascript solution, but it assumes you are enabling and disabling fields on the fly, which I am not.
The odd thing is, my CSS to allow it to work in FF etc...
Code:
input[disabled]{
border : none;
width : 50%;
background-color: transparent;
color : red;
opacity : 1;
}
...works to an extent in IE, the background colour is set to Transparent, however the text (the main thing I want to change) will not go red, it stays a horrible shadowy black/grey colour.
Any suggestions would be greatly appreciated!
|