PLEASE NOTE: These forums are no longer utilized and are provided as an archive for informational purposes only. All support issues will be handled via email using our support ticket system. For more detailed information on this change, please see this blog post.

Time Picker Formatting

  1. Hi All,

    I've got a funny formatting problem with the Time Picker - the colon character ( : ) between the form fields is wrapping and forcing the Hour label (HH) to drop down a line. I've looked around, but can't seem to figure it out. Any ideas?

    http://www.imperiallimousine.com.php5-2.dfw1-1.websitetestlink.com/request-a-quote/

    Thanks,
    Judd

    Posted 12 years ago on Saturday January 28, 2012 | Permalink
  2. Hey Judd, looks like this margin could be the culprit:

    [css]
    input[type="text"], input#s {
    margin: 0 1em 0 0;
    width: 60%;
    font-size: 16px;
    }

    So you could just append a margin: 0 here:

    [css]
    body .gform_wrapper .gform_body .gform_fields .gfield input[type="text"] {
    padding: .3em;
    font-size: .9em;
    font-weight: 400;
    margin: 0;
    }
    Posted 12 years ago on Sunday January 29, 2012 | Permalink
  3. Yeah that did it. Thanks a bunch. It was really driving me nuts.

    Posted 12 years ago on Sunday January 29, 2012 | Permalink
  4. Awesome - we don't want you to go nuts! :) Glad to help!

    Posted 12 years ago on Sunday January 29, 2012 | Permalink

This topic has been resolved and has been closed to new replies.