Styling 0:22 video

How to change the look and feel of file upload control

Learn how to change the look and feel of file upload control with SpreadsheetWeb. Follow focused steps, practical examples, and implementation guidance to…

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.
CSS17 lines
.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;
}