Hello!
I have IE6 and would like to color the font of a disabled input field black. This is the input field:
<input type="text" name="myField" value"myText" disabled="disabled" style="background-color="#DBDAD7">
The problem with this is that the myText in front of the background color #DBDAD7 looks like a relief so that you can hardly read it. The background color cannot be changed as it is the color of our company's style guide.
The make the font black I've tried the following css statements:
color:#000000
color:black
text-decoration:none (to maybe remove the relief effect)
But nothing helped. The color element is simply ignored if the disabled="disabled" is set.
Does anybody know how to make the font black?
Thanx
Eva
I have IE6 and would like to color the font of a disabled input field black. This is the input field:
<input type="text" name="myField" value"myText" disabled="disabled" style="background-color="#DBDAD7">
The problem with this is that the myText in front of the background color #DBDAD7 looks like a relief so that you can hardly read it. The background color cannot be changed as it is the color of our company's style guide.
The make the font black I've tried the following css statements:
color:#000000
color:black
text-decoration:none (to maybe remove the relief effect)
But nothing helped. The color element is simply ignored if the disabled="disabled" is set.
Does anybody know how to make the font black?
Thanx
Eva