[css-d] collapse issue...

2011-05-07 Thread Michael Beaudoin
I've never had this issue before, but I'm setting up a form and I'm getting a field collapse up under another field above, and I can't find out why. The email field is the one collapsing up under the last name field. Can anyone care to see what the heck I have done, and then instruct me

Re: [css-d] collapse issue...

2011-05-07 Thread Chetan Crasta
There are a number of XHTML errors, fixing those will simplify troubleshooting: http://validator.w3.org/check?uri=http%3A%2F%2Fba-doyn.com%2Fjunk%2Fwidget_test Regards, Chetan Crasta __ css-discuss [css-d@lists.css-discuss.org]

Re: [css-d] collapse issue...

2011-05-07 Thread David Hucklesby
On 5/7/11 7:19 AM, Michael Beaudoin wrote: I've never had this issue before, but I'm setting up a form and I'm getting a field collapse up under another field above, and I can't find out why. The email field is the one collapsing up under the last name field. [...]

Re: [css-d] collapse issue...

2011-05-07 Thread David Laakso
On 5/7/11 11:08 AM, David Hucklesby wrote: On 5/7/11 7:19 AM, Michael Beaudoin wrote: I've never had this issue before, but I'm setting up a form and I'm getting a field collapse up under another field above, and I can't find out why. The email field is the one collapsing up under the last name

Re: [css-d] collapse issue...

2011-05-07 Thread Chetan Crasta
Fixing the invalid HTML and using the right doctype (HTML, not XHTML) fixed the problem: http://roughtech.com/t/BudLight.html Regards, Chetan Crasta __ css-discuss [css-d@lists.css-discuss.org]

Re: [css-d] collapse issue...

2011-05-07 Thread David Laakso
On 5/7/11 1:18 PM, Chetan Crasta wrote: Fixing the invalid HTML and using the right doctype (HTML, not XHTML) fixed the problem: http://roughtech.com/t/BudLight.html Regards, Chetan Crasta Did it? Mac OS X 10.4.11:-) . Camino. Safari. WebKit. Opera. SeaMonkey. ~d --

Re: [css-d] collapse issue...

2011-05-07 Thread Chetan Crasta
On Sat, May 7, 2011 at 10:59 PM, David Laakso da...@chelseacreekstudio.com wrote: Did it? Mac OS X 10.4.11:-) . Camino. Safari. WebKit. Opera. SeaMonkey. It fixed the specific problem mentioned by the OP, not all the problems with the code. http://roughtech.com/t/BudLight.html : On Sat, May

[css-d] html, body {margin/padding/border: 0} not working in IE8

2011-05-07 Thread Dylan Wilbanks
I'm trying to drag my employer's GWT-driven website into standards mode and have run into an odd bug that I was hoping someone else has seen. I'm using the HTML5 doctype. There's a legacy quasi reset at the top of the stylesheet: html { height: 100%; }

Re: [css-d] html, body {margin/padding/border: 0} not working in IE8

2011-05-07 Thread John D
What I normally do is to start my CSS with this code: * { margin: 0; padding: 0; border: 0; } Then I enter another style like this: html, body { height: 100%; } And this normally clears any margins or paddings around any html

Re: [css-d] html, body {margin/padding/border: 0} not working in IE8

2011-05-07 Thread Dylan Wilbanks
No dice. No change at all. In 15+ years of web design, I've never seen this happen. Zeroing it out should work I'm going to go with Jukka's idea of something interacting further down. Wouldn't surprise me, given how complex (and, sadly, proprietary) it is. dw On Sat, May 7, 2011 at 2:14 PM,

Re: [css-d] html, body {margin/padding/border: 0} not working in IE8

2011-05-07 Thread John D
No dice. No change at all. In 15+ years of web design, I've never seen this happen. Zeroing it out should work Why not post a link to your site ( or a single test page) so that everybody can see what is happening.