You are viewing limited content. For full access, please sign in.

Question

Question

Remove text around file upload in new form designer...

asked on November 9, 2022 Show version history

Is it possible to remove the text (Drag and drop up to X files here to upload or) on the file upload in the new forms? Basically, I just want to show the Upload button so it free's up more space.

0 0

Answer

SELECTED ANSWER
replied on November 9, 2022

Try adding the following css

.file-upload-container {
  min-height: unset;
}
.file-upload-help-text {
  display: none !important;
}

If you also want the border and everything gone, add the following instead

.file-upload-container {
  min-height: unset;
  margin: 0 !important;
  padding: 0 !important;
  border: none;
}
.file-upload-help-text {
  display: none !important;
}

 

1 0
replied on November 9, 2022

Jason that worked perfect - thanks for quick response!

0 0

Replies

You are not allowed to reply in this post.
You are not allowed to follow up in this post.

Sign in to reply to this post.