Chris, I think my issue is slightly different: I am trying to get label text
to show on the same line as the input field and datePicker button.

E.g., (and hope the markup makes it through here)

<p><label for="startDate">Start date </label><input type="text"
name="startDate" class="datePickerField" /></p>

Displays as

Start date
[input][button]

...instead of the desired...

Start date [input][button]

I too am using the same CSS as on the demo -- and like you I placed it in my
master datePicker style sheet :-).

This afternoon my experimental attempt to route around the problem is to
apply a float to the label element that surrounds the, you know, label. This
is working in some cases, not so well in other layouts.

I'm one of those masochistic types who avoids using tables for layout --
even on forms. Instead I use the delightfully ambiguous definition list
element (dl) and some strategic classes on the label elements (when needed).
Otherwise I would just put the label and the text input in separate table
cells.

Reply via email to