any way to change the background color of a textbox depending on whether it is enabled or disabled? Any advice would be great...
You should be able to do it like this: Code: input[type="input"] { background:black; color:white; } input[disabled][type="input"] { background:blue; color:black; } But I think once again IE doesn't support it, so you may have to do it via JS for IE.
input[type="input"] { background:black; color:white; } input[disabled][type="input"] { background:blue; color:black; }
http://www.rickbull.co.uk/ Help get full alpha-transparency in Internet Explorer
Forum Rules