> From: Del Wegener
> Sent: Tuesday, May 15, 2007 8:19 AM

> I have followed this thread with interest because I want to 
> completeky hide 
> a text field on some webpages.

Del, 

You can use input#id { display:none; } to completely hide the text box. Or
(at the risk of suggesting a non-CSS solution), change the type to HIDDEN
and it won't display, but the form will still contain the input.

<input type="text" name="someinput" id="someinput" value="Text you need to
keep, but do not want to show"> becomes <input type="hidden"
name="someinput" id="someinput" value="Text you need to keep, but do not
want to show"> and all is well.


> Thanks for any help.

Hope this qualifies!

--G

______________________________________________________________________
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
IE7 information -- http://css-discuss.incutio.com/?page=IE7
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

Reply via email to