473,396 Members | 1,975 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,396 software developers and data experts.

Multiple column input page

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 field label
and the second column is input text box. But, I can't find something like:

-label- -Text input- -label- -text input-

Additional rows might have up to 4 or 5 label/text combinations.

Is this the place that I give up trying to format with CSS and use tables?

BTW: I am a "newbie" with respect to CSS.

Thanks for the help..

Jun 27 '08 #1
8 3347

"Bruce A. Julseth" <ju***********@bellsouth.netwrote in message
news:e8*****************@bignews5.bellsouth.net...
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
field label and the second column is input text box. But, I can't find
something like:

-label- -Text input- -label- -text input-

Additional rows might have up to 4 or 5 label/text combinations.

Is this the place that I give up trying to format with CSS and use tables?

BTW: I am a "newbie" with respect to CSS.

Thanks for the help..
Can someone help me with this problem? Is the wrong newsgroup to ask for
help on this problem?

Thanks...
Jun 27 '08 #2
Bruce A. Julseth wrote:
"Bruce A. Julseth" <ju***********@bellsouth.netwrote in message
news:e8*****************@bignews5.bellsouth.net...
>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
field label and the second column is input text box. But, I can't find
something like:

-label- -Text input- -label- -text input-

Additional rows might have up to 4 or 5 label/text combinations.

Is this the place that I give up trying to format with CSS and use tables?

BTW: I am a "newbie" with respect to CSS.

Thanks for the help..

Can someone help me with this problem? Is the wrong newsgroup to ask for
help on this problem?

Thanks...

CSS

fieldset { border: 0; float: 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>
....

--
Take care,

Jonathan
-------------------
LITTLE WORKS STUDIO
http://www.LittleWorksStudio.com
Jun 27 '08 #3

"Jonathan N. Little" <lw*****@central.netwrote in message
news:d8**************************@NAXS.COM...
Bruce A. Julseth wrote:
>"Bruce A. Julseth" <ju***********@bellsouth.netwrote in message
news:e8*****************@bignews5.bellsouth.net.. .
>>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
field label and the second column is input text box. But, I can't find
something like:

-label- -Text input- -label- -text input-

Additional rows might have up to 4 or 5 label/text combinations.

Is this the place that I give up trying to format with CSS and use
tables?

BTW: I am a "newbie" with respect to CSS.

Thanks for the help..

Can someone help me with this problem? Is the wrong newsgroup to ask for
help on this problem?

Thanks...
CSS

fieldset { border: 0; float: 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>
...

--
Take care,

Jonathan
-------------------
LITTLE WORKS STUDIO
http://www.LittleWorksStudio.com
Jonathon:

Thanks very much.. That works like a charm. Appreciate you taking the time
to send it to me.

Bruce
Jun 27 '08 #4

"Jonathan N. Little" <lw*****@central.netwrote in message
news:d8**************************@NAXS.COM...
Bruce A. Julseth wrote:
>"Bruce A. Julseth" <ju***********@bellsouth.netwrote in message
news:e8*****************@bignews5.bellsouth.net.. .
>>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
field label and the second column is input text box. But, I can't find
something like:

-label- -Text input- -label- -text input-

Additional rows might have up to 4 or 5 label/text combinations.

Is this the place that I give up trying to format with CSS and use
tables?

BTW: I am a "newbie" with respect to CSS.

Thanks for the help..

Can someone help me with this problem? Is the wrong newsgroup to ask for
help on this problem?

Thanks...
CSS

fieldset { border: 0; float: 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>
...

--
Take care,

Jonathan
-------------------
LITTLE WORKS STUDIO
http://www.LittleWorksStudio.com
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..

Bruce
Jun 27 '08 #5
Bruce A. Julseth wrote:
"Jonathan N. Little" <lw*****@central.netwrote in message
news:d8**************************@NAXS.COM...
>Bruce A. Julseth wrote:
>>"Bruce A. Julseth" <ju***********@bellsouth.netwrote in message
news:e8*****************@bignews5.bellsouth.net. ..
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
field label and the second column is input text box. But, I can't find
something like:

-label- -Text input- -label- -text input-

Additional rows might have up to 4 or 5 label/text combinations.

Is this the place that I give up trying to format with CSS and use
tables?

BTW: I am a "newbie" with respect to CSS.

Thanks for the help..

Can someone help me with this problem? Is the wrong newsgroup to ask for
help on this problem?

Thanks...
CSS

fieldset { border: 0; float: 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>
...
>
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>

--
Take care,

Jonathan
-------------------
LITTLE WORKS STUDIO
http://www.LittleWorksStudio.com
Jun 27 '08 #6

"Jonathan N. Little" <lw*****@central.netwrote in message
news:d9***************************@NAXS.COM...
Bruce A. Julseth wrote:
>"Jonathan N. Little" <lw*****@central.netwrote in message
news:d8**************************@NAXS.COM...
>>Bruce A. Julseth wrote:
"Bruce A. Julseth" <ju***********@bellsouth.netwrote in message
news:e8*****************@bignews5.bellsouth.net ...
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
field label and the second column is input text box. But, I can't find
something like:
>
-label- -Text input- -label- -text input-
>
Additional rows might have up to 4 or 5 label/text combinations.
>
Is this the place that I give up trying to format with CSS and use
tables?
>
BTW: I am a "newbie" with respect to CSS.
>
Thanks for the help..
>
>
>
Can someone help me with this problem? Is the wrong newsgroup to ask
for help on this problem?

Thanks...
CSS

fieldset { border: 0; float: 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>
...
>>
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>

--
Take care,

Jonathan
-------------------
LITTLE WORKS STUDIO
http://www.LittleWorksStudio.com
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...
Jun 27 '08 #7

"Bruce A. Julseth" <ju***********@bellsouth.netwrote in message
news:oD*****************@bignews1.bellsouth.net...
>
"Jonathan N. Little" <lw*****@central.netwrote in message
news:d9***************************@NAXS.COM...
>Bruce A. Julseth wrote:
>>"Jonathan N. Little" <lw*****@central.netwrote in message
news:d8**************************@NAXS.COM...
Bruce A. Julseth wrote:
"Bruce A. Julseth" <ju***********@bellsouth.netwrote in message
news:e8*****************@bignews5.bellsouth.ne t...
>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
>field label and the second column is input text box. But, I can't
>find something like:
>>
> -label- -Text input- -label- -text input-
>>
>Additional rows might have up to 4 or 5 label/text combinations.
>>
>Is this the place that I give up trying to format with CSS and use
>tables?
>>
>BTW: I am a "newbie" with respect to CSS.
>>
>Thanks for the help..
>>
>>
>>
Can someone help me with this problem? Is the wrong newsgroup to ask
for help on this problem?
>
Thanks...
CSS

fieldset { border: 0; float: 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>
...
>>>
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>

--
Take care,

Jonathan
-------------------
LITTLE WORKS STUDIO
http://www.LittleWorksStudio.com

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...
I think I have found it..

label.label2 {

position: relative;
left: 1em;
}

input.input2 {
position: relative;
left: 2em;
}

Look right?

Thanks..
Jun 27 '08 #8
Bruce A. Julseth wrote:
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..
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...

--
Take care,

Jonathan
-------------------
LITTLE WORKS STUDIO
http://www.LittleWorksStudio.com
Jun 27 '08 #9

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

7
by: Drew | last post by:
I have a db table like the following, UID, int auto-increment RegNo Person Relation YearsKnown Now here is some sample data from this table,
12
by: shank | last post by:
I'm trying to use online samples for submitting multiple records from ASP into a stored procedure. Failing! Through the below form, a user could be submitting many records at a time. I'm not...
5
by: c676228 | last post by:
Hi everyone, my colleagues are thinking about have three insurance plans on one asp page: I simplify the plan as follow: text box:number of people plan1 plan2 plan3
2
by: rengask | last post by:
I got the code to find and replace within an open text file. ------------------ Private Sub cmdFile_Click() Dim strTemp As String txtFile = "" dlg.FileName = "*.*" dlg.ShowOpen ...
2
by: dylanhughes | last post by:
I'm looking for an example of a login system that has multiple fields (2 to be exact) + password. e.g username, company name and password, the user, company and password are checked against a mysql...
3
by: sejal17 | last post by:
hello Can any one tell me how to read multiple worksheets from a single excel file.I have stored that excel in xml file.so i want to read that xml that has multiple worksheet.And i want to store...
3
by: sejal17 | last post by:
hello Can any one tell me how to read multiple worksheets from a single excel file.I have stored that excel in xml file.so i want to read that xml that has multiple worksheet.And i want to store...
43
by: bonneylake | last post by:
Hey Everyone, Well this is my first time asking a question on here so please forgive me if i post my question in the wrong section. What i am trying to do is upload multiple files like gmail...
1
by: ll | last post by:
Hi all, I've inherited a site and am currently looking to redesign a page that displays a table of course curriculum, with each row representing a "Topic" of the curriculum. There is a courseID...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.