diff --git a/src/main/resources/templates/overlay-pdf.html b/src/main/resources/templates/overlay-pdf.html
index 1394237e6..e92e4cb08 100644
--- a/src/main/resources/templates/overlay-pdf.html
+++ b/src/main/resources/templates/overlay-pdf.html
@@ -33,7 +33,6 @@
                   <option value="0" th:text="#{overlay-pdfs.position.foreground}">Foreground</option>
                   <option value="1" th:text="#{overlay-pdfs.position.background}">Background</option>
                 </select>
-                <br>
                 <div id="countsContainer" style="display: none;">
                   <label th:text="#{overlay-pdfs.counts.label}">Overlay Counts</label>
                   <!-- Inputs for counts will be dynamically added here -->
@@ -57,7 +56,11 @@
                       console.log("files",files);
                       if(files) {
                         const fileCount = files.length;
-
+                        countsContainer.appendChild(document.createElement("br"));
+                        const label = document.createElement('label');
+                        label.setAttribute('th:text', '#{overlay-pdfs.counts.label}');
+                        label.textContent = "Overlay Counts";
+                        countsContainer.appendChild(label);
                         for (let i = 0; i < fileCount; i++) {
                           const input = document.createElement('input');
                           input.type = 'text';