Re: [css-d] form/fieldset alignment in IE

2008-02-01 Thread Ray Leventhal
David Laakso wrote:
 Ray Leventhal wrote:

 http://www.cprtools.net/reg/regform1.php


snip


 
 Assuming you can mess around and play games with the html:

snip

 /select
 
 br / :: add ::
 
 

 /fieldset
 
 
 div!-- --/div :: add ::
 
 
 And you may want to pay a visit to the Markup Validation Service.
 
Hi David,

Thank you :)

The addition of the markup div!-- --/div between the fieldset 
tags did, in fact, do the trick.

Regarding validation, I was appalled to see that I'd submitted a page 
with so many errors, but in retrospect, I'd be messing with DTD to try 
to get IE to 'work' and have since fixed all but one.

On a side note (definitely OT - any replies to this, please send 
directly to me), how does one validate with an onSubmit() call in a 
submit button tag?

Thanks again,
-R


-- 
Non scholae sed vitae discimus
__
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] form/fieldset alignment in IE

2008-01-31 Thread Ray Leventhal
Hi all,

Once again, our problem child is IE.

The page at:

http://www.cprtools.net/reg/regform1.php

looks and performs as expected in Opera, FF2, Webkit28233 (Win,  MacOS 
10.5).

IE7, is moving the topmost fieldset to the right edge of the viewport, 
leaving the 2nd fieldset where it belongs.

IE6 (WinXPSP2) is doing much the same as it's older sister, but leaving 
some space to the right of the fieldset as compared to the viewport edge.

I'm feeing first E.Meyer's reset.css 
(http://www.cprtools.net/reg/reset.css), then styling with
http://www.cprtools.net/reg/style.css after.

Any pointers are, as usual, greatly appreciated.

Kind regards,
-Ray

-- 
Non scholae sed vitae discimus

__
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/


Re: [css-d] form/fieldset alignment in IE

2008-01-31 Thread Ray Leventhal
Ray Leventhal wrote:

typos abound...thankfully not in my code:

 I'm feeing first E.Meyer's reset.css 
s/feeing/feeding

-R

__
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/


Re: [css-d] form/fieldset alignment in IE

2008-01-31 Thread David Laakso
Ray Leventhal wrote:

 http://www.cprtools.net/reg/regform1.php


 IE7, is moving the topmost fieldset to the right edge of the viewport, 
 leaving the 2nd fieldset where it belongs.

 IE6 (WinXPSP2) is doing much the same as it's older sister, but leaving 
 some space to the right of the fieldset as compared to the viewport edge.


 -Ray

   



Assuming you can mess around and play games with the html:




/select

br / :: add ::


label for=phonePhone:nbsp;/label
input type=text id=phone size=35 name=phonespan 
class=req*/spanbr
label for=faxFax:nbsp;/label
input type=text id=fax size=35br
label for=emailEmail:nbsp;/label
input onblur=checkemail() type=text id=email name=email 
size=35span class=req*/spanbr

/fieldset


div!-- --/div :: add ::


And you may want to pay a visit to the Markup Validation Service.


Best,

~dL





-- 
http://chelseacreekstudio.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/


Re: [css-d] form/fieldset alignment in IE

2008-01-31 Thread Highpowered
Ray Leventhal wrote:
 Hi all,
 
 Once again, our problem child is IE.
 
 The page at:
 
 http://www.cprtools.net/reg/regform1.php
 
 looks and performs as expected in Opera, FF2, Webkit28233 (Win,  MacOS 
 10.5).
 
 IE7, is moving the topmost fieldset to the right edge of the viewport, 
 leaving the 2nd fieldset where it belongs.
 
 IE6 (WinXPSP2) is doing much the same as it's older sister, but leaving 
 some space to the right of the fieldset as compared to the viewport edge.
 
 I'm feeing first E.Meyer's reset.css 
 (http://www.cprtools.net/reg/reset.css), then styling with
 http://www.cprtools.net/reg/style.css after.
 
 Any pointers are, as usual, greatly appreciated.
 
 Kind regards,
 -Ray
 
For IE 6, try assigning a fixed width (try 800px) to your form#regform 
as well as text-align:left and margin: 0 auto .Change your fieldset 
widths to auto, and see if that doesn't help get you a little closer to 
what you're looking to do.

-HP
__
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/