How to center the browse upload button in form

  • RedIce
    Asked on November 27, 2019 at 4:34 PM

    Hey guys,

    I'm having trouble making the upload button center like all the other fields.


    Attached screenshot.


    Thanks

    Shannon



    Jotform Thread 2058207 Screenshot
  • Mike
    Replied on November 27, 2019 at 7:58 PM

    You may try adding the next CSS to your form:

    .inputContainer {
    left: 0;
    }
    [data-type="control_fileupload"] {
    display: flex;
    flex-direction: column;
    align-items: center;
    }
    .qq-uploader {
    width: 260px;
    }
    .form-all .qq-upload-button {
    width: initial !important;
    }
    .qq-upload-button {
    display: flex;
    justify-content: center;
    align-items: center;
    }

    Result:

    How to center the browse upload button in form Image 1 Screenshot 20

  • RedIce
    Replied on November 27, 2019 at 11:17 PM

    You guys are the best support I have ever had.


    Thank you very much :)


    Shannon