Re: [WSG] form hidden field ?

2005-10-30 Thread Terrence Wood
csslist said: thanks guys :) I actually cheated and just took it out and put it elsewhere... I couldnt take the Block display off because then it screws up form. good catch though Joshua :) Another fix for CSS2.1 compliant browsers (i.e. not IE): input[type=hidden] { display:none; } or

Re: [WSG] form hidden field ?

2005-10-30 Thread james.mellor
- - This is an automatic reply - - I am on leave until Monday 31 Oct If your email is regarding the University webite, please email [EMAIL PROTECTED] in my absence, or contact: Sarah Bell Marketing Communications Manager e: [EMAIL PROTECTED] t: 023 9284 2948 or Paul Krycler Web Content

Re: [WSG] form hidden field ?

2005-10-29 Thread Joshua Street
Example link? On 10/29/05, csslist [EMAIL PROTECTED] wrote: I have a hidden field in a css styled form and when you view the page it's shown as a line in firefox, any ideas? tia dave -- Joshua Street http://www.joahua.com/ +61 (0) 425 808 469

Re: [WSG] form hidden field ?

2005-10-29 Thread csslist
http://65.36.226.10/contact/contact.cfmFrom: Joshua Street [EMAIL PROTECTED]Sent: Saturday, October 29, 2005 2:11 AMTo: wsg@webstandardsgroup.orgSubject: Re: [WSG] form hidden field ?Example link?On 10/29/05, csslist <[EMAIL PROTECTED]> wrote: I have a hidden field in a css styled form an

Re: [WSG] form hidden field ?

2005-10-29 Thread Bert Doorn
G'day I have a hidden field in a css styled form and when you view the page it's shown as a line in firefox, any ideas? In your css: input,textarea { color: #ff; background-color: #58829A; border: 1px solid #27455f; display: block; etc I'd say this is why

Re: [WSG] form hidden field ?

2005-10-29 Thread Joshua Street
: [WSG] form hidden field ? Example link? On 10/29/05, csslist wrote: I have a hidden field in a css styled form and when you view the page it's shown as a line in firefox, any ideas? tia dave -- Joshua Street http://www.joahua.com/ +61 (0) 425 808 469

Re: [WSG] form hidden field ?

2005-10-29 Thread Joshua Street
On 10/29/05, Bert Doorn [EMAIL PROTECTED] wrote: I'd say this is why you see the line - your hidden input will be given display:block, with that border. Removing display:block should fix it. Ah, that makes more sense than mine :P Guess I was in too much of a hurry to make a point! -- Joshua

Re: [WSG] form hidden field ?

2005-10-29 Thread csslist
: [WSG] form hidden field ?Ahh, beautiful. This site serves a dual purpose!To Joe Taylor's earlier remark that "I would be concerned about a bugonly showing up in Firefox, I believe that hiding something fromFirefox is not the way to go, but rather, make it right in Firefox andthen worry about the o

Re: [WSG] form hidden field ?

2005-10-29 Thread Anders Nawroth
Dave, Firefox is rendering the border you've defined on the input selector. Use inline CSS of border:0; or give it a class/ID (as you have the other form elements) and add a rule to your stylesheet to stop this from appearing. I remember this bug from Mozilla a long time ago. I did this:

Re: [WSG] form hidden field ?

2005-10-29 Thread Joseph R. B. Taylor
Set it's display to none. Joshua Street wrote: Example link? On 10/29/05, csslist [EMAIL PROTECTED] wrote: I have a hidden field in a css styled form and when you view the page it's shown as a line in firefox, any ideas? tia dave -- Joshua Street http://www.joahua.com/ +61 (0)