Spinner field not showing properly, it is cut-off

  • Retop13
    Asked on March 23, 2016 at 10:32 AM
    Спасибо да теперь знаю как смещать посмотрите пожалуйста форму http://qualityservise.ru/zayavka-na-raschet.html не работает кнопка кол-во помещений не переключается больше 1
    Спасибо заранее с уважением Игорь
  • Jan
    Replied on March 23, 2016 at 10:36 AM

    I can see that the Spinner field is cut off only in Google Chrome.

    Spinner field not showing properly, it is cut off Image 1 Screenshot 30

     

    It shows fine in Mozilla Firefox.

    Spinner field not showing properly, it is cut off Image 2 Screenshot 41

    In order to fix that, you will need to apply custom CSS on the form. Here's the code:

    .form-spinner {
    height: 30px !important;
    }

    .form-spinner-input-td > input {
    height: 25px !important;
    }

    This will increase the height of the spinner element. Here's a guide on how to inject custom CSS on the form.

    Hope that helps. Thank you.