Re: [css-d] Lovely Tableless Form (Except in Firefox 2)

2008-11-13 Thread Philippe Wittenbergh

On Nov 14, 2008, at 6:28 AM, Geoff Hoffman wrote:

> Can anyone shed some light as to why my form labels on this page:
>
> http://www.dvsbluray.com/page/about-blu-ray
>
>
> in Firefox 2 are not observing the following:
>
> form.dvsform label {  #shared.css (line 182)
>  color:#294C80;
>  text-align:right;
> }
>
> form.dvsform label {  #shared.css (line 159)
>  width:120px;
> }


Firefox 2 doesn't support 'display:inline-block' (as you don't mention  
in the snippet above).

form.dvsform label  {
display:-moz-inline-box; /* <-- add this */
display:inline-block;
width:120px;
}

will fix this.


Philippe
---
Philippe Wittenbergh
http://l-c-n.com/





__
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
List policies -- http://css-discuss.org/policies.html
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/


[css-d] Lovely Tableless Form (Except in Firefox 2)

2008-11-13 Thread Geoff Hoffman
Can anyone shed some light as to why my form labels on this page:

http://www.dvsbluray.com/page/about-blu-ray


in Firefox 2 are not observing the following:

form.dvsform label {  #shared.css (line 182)
  color:#294C80;
  text-align:right;
}

form.dvsform label {  #shared.css (line 159)
  width:120px;
}



Works great in IE6, IE7, FF3, Opera 9.6, Safari (Tested WinXP)

Cheers & TIA,

Geoff

__
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
List policies -- http://css-discuss.org/policies.html
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/