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 field issue

  1. I am having issues with a time field (best time to call) on this form (http://www.doctorsperdeimtest.com/post-a-job/). The ":" that separates the hours from minutes is being pushed to the next line and I can't seem to figure out how to get it back inline where it should be via CSS. Any ideas?

    Posted 11 years ago on Monday January 14, 2013 | Permalink
  2. This is normally due to a blanket rule in one of your theme's stylesheets causing inputs to be "display:block;" but I could not quickly find that. However, to fix the issue with this one field, you can add this rule to your custom.css where you have added the other Gravity Forms styles::

    [css]
    body .gform_wrapper #input_2_7_1 {
     display: inline!important;
    }

    That will put the colon back between the HH and MM.

    Posted 11 years ago on Tuesday January 15, 2013 | Permalink
  3. Thx Chris!

    Posted 11 years ago on Tuesday January 15, 2013 | Permalink
  4. You're welcome. Looks like you took care of it.

    Posted 11 years ago on Tuesday January 15, 2013 | Permalink

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