>>> I'm "Failing" a trying to create a multicolum text input page. I have
>>> found many examples of two column pages where the first column is the
[quoted text clipped - 33 lines]
> </fieldset>
> ...
>>>> I'm "Failing" a trying to create a multicolum text input page. I have
>>>> found many examples of two column pages where the first column is the
[quoted text clipped - 33 lines]
>> </fieldset>
>> ...
> This works for a single line but now how do I force the next group of input
> fields to start in the left edge.
>
> Thanks..
Need to research "clear", try tutorials at www.htmldog.com
CSS
fieldset.nextrow { clear: left; }
HTML
<fieldset>
<label for="foo">FOO:</label>
<input name="foo" id="foo" type="text" size="20">
</fieldset>
<fieldset>
<label for="bar">BAR:</label>
<input name="bar" id="bar" type="text" size="20">
</fieldset>
<fieldset class="nextrow">
<label for="baz">BAZ:</label>
<input name="baz" id="baz" type="text" size="20">
</fieldset>

Signature
Take care,
Jonathan
-------------------
LITTLE WORKS STUDIO
http://www.LittleWorksStudio.com
Bruce A. Julseth - 24 Jun 2008 21:19 GMT
>>>>> I'm "Failing" a trying to create a multicolum text input page. I have
>>>>> found many examples of two column pages where the first column is the
[quoted text clipped - 60 lines]
> <input name="baz" id="baz" type="text" size="20">
> </fieldset>
Thanks again for your help.
My form is "Almost" complete. My current problem is trying to move the label
for the 2nd input field to the right.
Label1 Input1 Label2 Input2
I want to put more space between "Input1" and "Label2".
Everything I've tried has "messed up" the form..
Thanks...
Bruce A. Julseth - 24 Jun 2008 21:46 GMT
>>>>>> I'm "Failing" a trying to create a multicolum text input page. I have
>>>>>> found many examples of two column pages where the first column is the
[quoted text clipped - 73 lines]
>
> Thanks...
I think I have found it..
label.label2 {
position: relative;
left: 1em;
}
input.input2 {
position: relative;
left: 2em;
}
Look right?
Thanks..
Jonathan N. Little - 24 Jun 2008 21:48 GMT
> My form is "Almost" complete. My current problem is trying to move the label
> for the 2nd input field to the right.
[quoted text clipped - 4 lines]
>
> Everything I've tried has "messed up" the form..
What have you tried...a URL please.
Also, rather than code-monkey your way through the process, at least
review the basics of CSS at www.htmldog.com It might save you a lot of
trial and error work...

Signature
Take care,
Jonathan
-------------------
LITTLE WORKS STUDIO
http://www.LittleWorksStudio.com