Search Knowledge Base by Keyword
How to change the look and feel of file upload control
To change the look and feel of file upload control;
- Open Designer Interface,
- Go to the ‘Stylesheet’ module.
- Add a new stylesheet.
- Choose file upload button stylesheet from ‘Style Template’ for changing the look and feel of file upload control.
- Save the stylesheet by clicking on the “Save” button.
.dz-default:after {
content: "Upload";
border: 1px solid var(--colorPrimary);
color: white;
padding: 10px;
background: var(--colorPrimary);
border-radius: 4px;
top: 300px;
}
.dz-button {
font-size: 0 !important;
}
.dz-default.dz-message {
padding-top: 20px;
}