Upload button and files are not visually lining up nicely

  • lritter
    Asked on June 2, 2020 at 1:55 PM

    How can I make this look better. Notice the Upload button is out of whack. It would be nice to have the files show beneath the field and button. 

    1591120456Upload Screenshot 10

  • Jovanne JotForm Support
    Replied on June 2, 2020 at 4:14 PM

    Hi @lritter, thank you for reaching out to us.

    You can insert this custom CSS code:

    #id_392 .form-label {

    width: 100% !important;

    }

     

    div.qq-upload-button{

      overflow: visible !important;

        padding: 10px 20px !important;

            position: absolute !important;

    }

     

    .qq-upload-list {

        margin: 40px 0 0 0 !important;

     

    }

     

    159112879514b Screenshot 10



    Here is a guide on to how to inject custom CSS codesHow-to-Inject-Custom-CSS-Codes,

    Please give it a try and let us know if this works for you.

  • lritter
    Replied on June 3, 2020 at 9:57 AM

    Bingo! Works great. Thank you!