Sent by adam reitsma on 23 September 2004 03:03
Hi Berry,
This page:
http://www.w3schools.com/tags/tag_input.asp
outlines that you can specify an input of TYPE hidden:
<input type="hidden" name="website" value="http://www.mywebsite.com.au">
otherwise, i suppose you could specify a class:
<style>
..hide {
visibility:hidden;
}
</style>
<form>
<input name="test" type="text" value="?" class="hide">
</form>
or, you could use the id:
<style>
#testHidden {
visibility:hidden;
}
</style>
<input name="test" type="text" value="?" id="testHidden">
OR, you could use the style attribute:
<input name="test" type="text" value="?" style="visibility:hidden;">
....put simply, there are myriad ways to hide an input!
I hope this helps - and if it doesn't, then I suspect it could be
helpful if you were to post a link to your site, so that we can see
what's happening.
Regards,
Adam
______________________________________________________________________
css-discuss [EMAIL-REMOVED]]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/