hello,
i have some users who are not happy with the gray text color of the text in a disabled input field.
i tried many things to change the color of the text but i didn't get further then changing the background color which had even more complaints.
am i doing something wrong or is there really no solution for changing the color of this text in disabled input fields
regardsIn IE you can not change the color of a disabled field.
You could fake it like this:
<input type="text" value="disabled" style="color:#f00;background:#ccc;" onfocus="this.blur();" onselectstart="event.returnValue=false;" />thanks,
this is a solution
i have some users who are not happy with the gray text color of the text in a disabled input field.
i tried many things to change the color of the text but i didn't get further then changing the background color which had even more complaints.
am i doing something wrong or is there really no solution for changing the color of this text in disabled input fields
regardsIn IE you can not change the color of a disabled field.
You could fake it like this:
<input type="text" value="disabled" style="color:#f00;background:#ccc;" onfocus="this.blur();" onselectstart="event.returnValue=false;" />thanks,
this is a solution