Date picker info is positioned incorrectly

  • zapin
    Asked on November 29, 2017 at 2:43 PM

    On my date picker the date stands below each other, like day, month and year, is it possible to allign them instead and center the time the same way (which also seems to stand a bit weird for the moment) ?

    I`ve added a screenshot of the problem.



    Jotform Thread 1310319 Screenshot
  • Richie JotForm Support
    Replied on November 29, 2017 at 3:25 PM

    You can add this css custom codes to fix the issue:

    Date picker info is positioned incorrectly Image 1 Screenshot 20


    select#hour_32{
      position: absolute;
      margin-left: -35px;
     
    }
    span.date-separate{
      margin-left: 8px;
    }
    select#min_32{
      position: absolute;
      margin-left: -73px;
    }
    img#input_32_pick{
      position: absolute;
      margin-left: 180px;
      margin-top: -35px;
     
    }

    Here is a guide in injecting custom css code: https://www.jotform.com/help/117-How-to-Inject-Custom-CSS-Codes


  • zapin
    Replied on November 29, 2017 at 3:36 PM

    Thank you, works perfectly