[thelist] more forms and CSS --making boxes invisible

Scott Dexter sgd at ti3.com
Tue Nov 7 11:10:53 CST 2000


I've been tasked with making text input boxes not look like text input
boxes, specifically, I gotta remove the border and make just the text inside
visible (its a read-only field, and we don't want users thinking they should
be trying to input to it).

I got IE behaving:

<style type="text/css">
input.disabledbox {background-color:#ffffff;
		color: #000000;
		border-style:none;
		font-weight:bold;
		}
</style>

...

<input 
	type="text"
	name="dis"
	class="disabledbox"
	disabled="True"
	onFocus="this.blur();">


so can I get Netscape to behave and remove the box border? Or does NN still
puke on this portion of CSS? --and IE still has the font color gray because
the item is "disabled" --it seems to ignore the color setting in the class
....

T-T-T-TIA
sgd
--
work: http://www.ti3.com/
non: http://thinksafely.org/




More information about the thelist mailing list