I would like to have two spinners in one line a from/to price range, see attached

  • beingrelational
    Asked on January 19, 2017 at 10:47 AM

    I would like to have two spinners in one line a from/to price range, see attached Image 1 Screenshot 20

    I can't seem to get two spinners on the same line like in this image, I can only get two separate fields that are not aligned

     

    Jotform Thread 1039557 Screenshot
  • Boris
    Replied on January 19, 2017 at 11:59 AM

    Yes, this is achievable. I see that you've already used form field positioning to position both of these fields on the same line. Now, the only thing that is moving the "To" spinner field slightly down is its empty label.

    Please try injecting the following custom CSS into your form to remove its label:

    #label_21 { display: none; }

    You can add CSS codes to your form by following this guide:

    https://www.jotform.com/help/117-How-to-Inject-Custom-CSS-Codes

    Your form would end up looking like this:

    I would like to have two spinners in one line a from/to price range, see attached Image 1 Screenshot 20

    If you want to move the fields a little closer, you can also add the following CSS:

    #id_21 { padding-left: 0; }

    Please try them out, and let us know should you need further assistance.