diff -Nru ./index.php ./index.php
--- ./index.php	2015-05-07 18:42:38.000000000 +0200
+++ ./index.php	2015-05-21 17:56:05.151258000 +0200
@@ -158,6 +158,9 @@
     </p>
 
     <div id="options">
+	<a href="#hide1" class="hide" id="hide1">&#9654; <?php echo t('Options') . '...'?></a>
+	<a href="#show1" class="show" id="show1">&#9660; <?php echo t('Options') . ':'  ?></a>
+	<div class="collapsable">
         <table id="option_table">
         <tr>
         <td><?php echo t('One time download'); ?>:</td>
@@ -193,6 +196,8 @@
         <?php } ?>
         </select></td>
         </tr>
+        </table>
+	</div>
 
         <?php
         if ($cfg['maximal_upload_size'] > 0)
@@ -203,7 +208,7 @@
         ?>
 
 		<p id="max_file_size" class="config"></p>
-    <p>
+    <p id="send_button">
     <?php
     if (jirafeau_has_upload_password ($cfg) && $_SESSION['upload_auth'])
     {
@@ -225,7 +230,6 @@
         upload ('<?php echo $cfg['web_root']; ?>', <?php echo jirafeau_get_max_upload_size_bytes (); ?>);
     "/>
     </p>
-        </table>
     </div> </fieldset>
 
     <?php
diff -Nru ./media/courgette/style.css.php ./media/courgette/style.css.php
--- ./media/courgette/style.css.php	2015-05-07 18:42:38.000000000 +0200
+++ ./media/courgette/style.css.php	2015-05-21 18:01:21.287258000 +0200
@@ -188,12 +188,41 @@
    3 = Options
    ========================================================================== */
 
+.collapsable {
+display:none;
+}                                                   
+
+.show {
+display: none;
+}                                                         
+
+.hide:target + .show {
+display: inline;
+}                                        
+
+.hide:target {
+display: none;
+}                                                  
+
+.hide:target ~ .collapsable {
+display:inline;
+}                                 
+
+@media print {
+  .hide, .show {
+    display: none;
+  }
+}
+
 #options {
   position: relative;
   z-index: 10;
   background: #efebe9;
   width: 100%;
   height: 90%;
+  min-height: 10em;
+  /* border-top: 5px dashed; */
+  /* border-color: inherit; */
 }
 
 #options tr { height: 2.7em; }
@@ -206,9 +235,14 @@
 #option_table td:first-child {
 }
 
-#options input[type="submit"] {
-  position: relative;
-  left: 11.2em;
+#options a {
+  padding: 0.5em 1em;
+  color: #663D1C;
+  font-size: 1.2em;
+}
+
+#send_button {
+  text-align: center;
 }
 
 /* ==========================================================================
