How can I remove the rounded corners from my multi-upload button?

  • boxclub
    Asked on October 27, 2015 at 4:45 PM

    I want it to match my Submit button. https://form.jotform.com/52996021047153

  • Kevin Support Team Lead
    Replied on October 27, 2015 at 6:34 PM

    You can do this Injecting a Custom CSS Code with the next steps : 

    .qq-upload-button {

        border-radius : 0px !important;

        -webkit-border-radius : 0px !important;

        -moz-border-radius : 0px !important;

        -o-border-radius : 0px !important;

        -ms-border-radius : 0px !important;

    }

    Or you can go to Designer and paste the above code as well.

    Here is my sample form, you can clone it if you want :

    https://form.jotform.com/52996749605978?

     

    I hope this helps.