change the color of the upload button and remove the frame around it.

  • reymendoza
    Asked on February 7, 2018 at 6:59 AM

    I want to remove the frame around and change the color but it doesn't seem to work

  • genebriones
    Replied on February 7, 2018 at 8:29 AM

    You can change the color of the file upload button and remove the border around it by inserting this CSS code to the Custom CSS field inside the Form Designer. See screenshot below:

    1518010110ezgif Screenshot 10


    Then insert the following CSS:


    .qq-upload-button {


    background: blue!important;

    color: white;

    border-style: none;


    }


    You can change the background color by typing your preferred color using hex codes. The same principle applies to the font. I hope this helps.