How to hide custom text in Blazor File Upload

Answer:

We can hide the text "or drop files here" by styling the "e-file-drop" class. Please refer to the code below,

<style>

.e-upload .e-file-select-wrap .e-file-drop {

display: none;

}

style>


If we want to localize the text according to the culture, then we can localize the text using the “Uploader_DropFilesHint” property.

Kindly refer to the below UG documentation for more information about localization,
Sample link here

Loader.
Up arrow icon