ok have found a possible css solution and want to run it past you guys
the issue i am having in implementing it is knowing the exact tags required for that specific button/field
Code:
.upload-form .elementor-field-type-upload input[type="file"]::before{
content: 'Browse files';
background-color: grey;
padding: 10px 15px;
border-radius: 20px;
color: white;
font-size: 14px;
line-height: 3em !important;
font-family: 'Open Sans', sans-serif;
font-weight: 600;
}
.upload-form .elementor-field-type-upload input[type="file"]::after{
content: 'You have not chosen any files yet';
font-size: 14px !important;
padding-left: 10px;
}
.upload-form .elementor-field-type-upload input[type="file"]{
font-size: 0px;
}
.upload-form .elementor-field-type-upload input[type="file"]::file-selector-button{
display: none;
}
tutorial was here
https://www.youtube.com/watch?v=8XnOBVrU6r0
Bookmarks