Change Upload File From Text To Button

Hi all,

just like this topic title, i want to change "Upload File" Text (which is auto generate when choose File type on form builder) to button

i need to do this because almost all of my customer is just ignore this and not use it because its just shown as text without any indication that it can be clicked

Thanks

For example, please add the follwoing code to the CSS section of the Theme editor:

.ty-fileuploader__a {    
    padding: 0px 15px;
    background: lightgreen;
    color: white;
    border-radius: 6px;
    font-size: 20px;
}

result:

http://prntscr.com/c0zk8d

For example, please add the follwoing code to the CSS section of the Theme editor:

.ty-fileuploader__a {    
    padding: 0px 15px;
    background: lightgreen;
    color: white;
    border-radius: 6px;
    font-size: 20px;
}

result:

http://prntscr.com/c0zk8d

thanks, i will apply this