diff --git a/ihtml/themes/breezy/remove.tpl b/ihtml/themes/breezy/remove.tpl
index 4bcb2e86dc7507f4216f01e2e10fb7fb16f27f3d..c3cbaf13b685ac7a65fcbb03a6f85d91947e45c0 100644
--- a/ihtml/themes/breezy/remove.tpl
+++ b/ihtml/themes/breezy/remove.tpl
@@ -1,17 +1,16 @@
 <div style="font-size:18px;">
-  <img alt="" src="geticon.php?context=status&amp;icon=dialog-warning&amp;size=32"/>&nbsp;{t}Warning{/t}
+  <img alt="" src="geticon.php?context=status&amp;icon=dialog-warning&amp;size=32" class="center"/>&nbsp;{t}Warning{/t}
 </div>
 <p>
  {$intro}
- {t}This may be used by several groups. Please double check if your really want to do this since there is no way for FusionDirectory to get your data back.{/t}
+ {t}This may be used by several groups. Please double check if you really want to do this since there is no way for FusionDirectory to get your data back.{/t}
 </p>
 <p>
  {t}So - if you're sure - press 'Delete' to continue or 'Cancel' to abort.{/t}
 </p>
 
 <p class="plugbottom">
- <input type=submit name="delete_confirm" value="{msgPool type=delButton}">
+ <input type="submit" name="delete_confirm" value="{msgPool type=delButton}"/>
  &nbsp;
- <input type=submit name="delete_cancel" value="{t}Cancel{/t}">
+ <input type="submit" name="delete_cancel" value="{msgPool type=cancelButton}"/>
 </p>
-
diff --git a/plugins/admin/acl/remove.tpl b/plugins/admin/acl/remove.tpl
index 46696d286b3e55ee1acc6cd954afb8ef1e98190a..ea079d26479ca65c9dff717b1fafdcf865a65478 100644
--- a/plugins/admin/acl/remove.tpl
+++ b/plugins/admin/acl/remove.tpl
@@ -1,24 +1,28 @@
-<div style="padding:5px;">
-  <div style="font-size:18px;">
-   <img alt="" src="geticon.php?context=status&amp;icon=dialog-warning&amp;size=48" class="center"/>&nbsp;{t}Warning{/t}
+<div class="notice">
+  <div class="msgtitle">
+    <h2>
+      <img alt="" src="geticon.php?context=status&amp;icon=dialog-warning&amp;size=32" class="center"/>&nbsp;{t}Warning: you are about to delete the ACL assignments on the following objects{/t}
+    </h2>
   </div>
-  <p>
-    <ul>
-      {foreach from=$objects item=object}
-        <li style="list-style-image:url('{$object.icon}');" title="{$object.type}">
-          {$object.name}&nbsp;(<i>{$object.dn}</i>)
-        </li>
-      {/foreach}
-    </ul>
-    {t}This includes all ACL assignments made on this node(s). If you want the list of these assignments, please cancel and open the objects.{/t}
-  </p>
+  <div>
+    <p>
+      <ul>
+        {foreach from=$objects item=object}
+          <li style="list-style-image:url('{$object.icon}');" title="{$object.type}">
+            {$object.name}&nbsp;(<i>{$object.dn}</i>)
+          </li>
+        {/foreach}
+      </ul>
+      {t}This includes all ACL assignments made on this node(s). If you want the list of these assignments, please cancel and open the objects.{/t}
+    </p>
 
-  <p>
-    {t}Press 'Delete' to continue or 'Cancel' to abort.{/t}
-  </p>
+    <p>
+     {t}Press 'Delete' to continue or 'Cancel' to abort.{/t}
+    </p>
 
-  <p class="plugbottom">
-    <input type="submit" name="delete_confirmed" value="{msgPool type=delButton}"/>
-    <input type="submit" name="delete_cancel" value="{msgPool type=cancelButton}"/>
-  </p>
+    <p class="plugbottom">
+      <input type="submit" name="delete_confirmed" value="{msgPool type=delButton}"/>
+      <input type="submit" name="delete_cancel" value="{msgPool type=cancelButton}"/>
+    </p>
+  </div>
 </div>