How to reduce padding at the bottom of browse button?

  • vtiportal
    Asked on January 22, 2018 at 2:43 AM

    How can I reduce the bottom padding of the browse button without affecting the submit button? See web page.

  • VictoriaKondratenko
    Replied on January 22, 2018 at 4:36 AM

    You have lots of injected custom CSS, so to fix the 'Browse' button I recommend to use the following code:

    .qq-upload-button {

    padding-top: 15px !important;

    padding-bottom: 0px !important;

    }

    It affects only the padding of 'Browse'. 

    Result:

    1516613709Screenshot 2 Screenshot 10 

     

  • Sabbir
    Replied on January 22, 2018 at 8:42 AM

    Let us know if the CSS code provided by my colleague works for you or not.

    Follow this guide to know how you can inject the css code in your form builder:

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

    If you have any further query, please let us know.

  • vtiportal
    Replied on January 22, 2018 at 1:20 PM

    Thanks.