I've got 4 fields in the left side of a form's fieldset, and others on the right.
The ones on the right are tabled - and for now I'm not concerned with.
The left fields are nested inside label elements, such as:
<label>Name<input id='pname' type='text' size='32' /></label>
The CSS to control their layout is:
#p_left {float: left;}
#p_left label {width: 8em; display: block;}
#p_right {float: right;}
As of now, my textfields in the left portion are below their respective labels.
How do I get these fields to be on the same line as their labels? (Thanks)
The ones on the right are tabled - and for now I'm not concerned with.
The left fields are nested inside label elements, such as:
<label>Name<input id='pname' type='text' size='32' /></label>
The CSS to control their layout is:
#p_left {float: left;}
#p_left label {width: 8em; display: block;}
#p_right {float: right;}
As of now, my textfields in the left portion are below their respective labels.
How do I get these fields to be on the same line as their labels? (Thanks)