Re: [WSG] hiding legend tag

2005-11-12 Thread James Ellis
Hi Sacha I quite like the legend and label visible... makes the form more easy to understand. Also, if you use an optgroup in your drop down it will do away with your option value= - - - - -/option tags Cheers James On 11/11/05, Alexander Jerabek [EMAIL PROTECTED] wrote: Hi everybody,I'm

RE: [WSG] hiding legend tag

2005-11-11 Thread Alexander Jerabek
Hi Phillipe, legend{margin:-1em; font-size:0px;} In my copy of Firefox, your legend will be 12px in size (minimum font-size set, us older people really do like that little preference in the browser ;-)) Ah, I forgot to consider this, thanks for the reminder. Ideally, the document's

RE: [WSG] hiding legend tag

2005-11-10 Thread Adam Burmister \(DSL AK\)
I think you'll find that you can successfully hide the legend off canvas with .hide { position: absolute; left: -999px; width: 9px; } Regards, - A -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Alexander Jerabek Sent: Friday, 11

RE: [WSG] hiding legend tag

2005-11-10 Thread Adam Burmister \(DSL AK\)
Opps, cancel that last reply... -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Alexander Jerabek Sent: Friday, 11 November 2005 11:48 a.m. To: wsg@webstandardsgroup.org Subject: [WSG] hiding legend tag Hi everybody, I'm working on an accessible form

Re: [WSG] hiding legend tag

2005-11-10 Thread *.gtf
Dnia piątek, 11 listopada 2005 00:43, Adam Burmister (DSL AK) napisał: I think you'll find that you can successfully hide the legend off canvas with .hide { position: absolute; left: -999px; width: 9px; } Regards, - A imo : .hide { display:none; } is much

Re: [WSG] hiding legend tag

2005-11-10 Thread Philippe Wittenbergh
On 11 Nov 2005, at 7:47 am, Alexander Jerabek wrote: So I came up with this: legend{margin:-1em; font-size:0px;} In Mozilla the 0px makes the text invisible, but only miniscule in IE so I used margin:-1em; is to push it under the drop down menu in the form. My question is: does anybody