diff --git a/opentech/apply/funds/templates/funds/includes/field.html b/opentech/apply/funds/templates/funds/includes/field.html
index 935b4cef3efb5ecea41a7c678fbaa1204419527d..c2b2dca8b13a0992889b7498fcaa8c813e4af5c6 100644
--- a/opentech/apply/funds/templates/funds/includes/field.html
+++ b/opentech/apply/funds/templates/funds/includes/field.html
@@ -3,7 +3,7 @@
 {% with widget_type=field|widget_type field_type=field|field_type %}
 
 <div class="form__group {% if field.errors %}form__error{% endif %}">
-    {% if widget_type == 'clearable_file_input' %}
+    {% if widget_type == 'clearable_file_input' or widget_type == 'multi_file_input' %}
         <span class="form__question">{{ field.label }}</span>
         <label for="{{ field.id_for_label }}" class="form__question form__question--{{ field_type }} {{ widget_type }}" {% if field.field.required %}required{% endif %}>
             <span>Upload</span>
diff --git a/opentech/static_src/src/sass/public/components/_form.scss b/opentech/static_src/src/sass/public/components/_form.scss
index ddee807bb320d7f610114a81874f99d1262d8ade..88cf3d5d02f81bde5ebc00de3cec376c64228db8 100644
--- a/opentech/static_src/src/sass/public/components/_form.scss
+++ b/opentech/static_src/src/sass/public/components/_form.scss
@@ -53,6 +53,7 @@
 
         // sass-lint:disable class-name-format
         &--image_field,
+        &--multi_file_field,
         &--file_field {
             @include button($color--light-blue, $color--dark-blue);
             max-width: 290px;