diff --git a/profiles/templates/profiles/profile_merge.html b/profiles/templates/profiles/profile_merge.html
index 3b1bdcfca1aa56dce3e7dab56c01278dfd1f2c6f..12cc944d6516421265fcfa9e221f70e01dd338aa 100644
--- a/profiles/templates/profiles/profile_merge.html
+++ b/profiles/templates/profiles/profile_merge.html
@@ -14,27 +14,32 @@
 
 {% block content %}
 <div class="row">
-    <div class="col-12">
-        <h1 class="highlight">Merge Profiles {{ profile_to_merge.id }} and {{ profile_to_merge_into.id }}</h1>
-    </div>
-    <div class="col-lg-6">
-        <h3 class="mb-3">Profile {{ profile_to_merge.id }}</h3>
-    	{% include 'profiles/_profile_card.html' with profile=profile_to_merge %}
-    </div>
-    <div class="col-lg-6">
-        <h3 class="mb-3">Profile {{ profile_to_merge_into.id }}</h3>
-    	{% include 'profiles/_profile_card.html' with profile=profile_to_merge_into %}
-    </div>
+  <div class="col-12">
+    <h1 class="highlight">Merge Profiles {{ profile_to_merge.id }} and {{ profile_to_merge_into.id }}</h1>
+  </div>
+</div>
+<div class="row">
+  <div class="col-12">
+  <h3 class="highlight">Profile {{ profile_to_merge.id }}</h3>
+  {% include 'profiles/_profile_card.html' with profile=profile_to_merge %}
+  </div>
+</div>
+<div class="row">
+  <div class="col-12">
+    <h3 class="highlight">Profile {{ profile_to_merge_into.id }}</h3>
+    {% include 'profiles/_profile_card.html' with profile=profile_to_merge_into %}
+  </div>
+</div>
 
-    <div class="col-12">
-        <hr>
-        <h3 class="highlight">Merge:</h3>
-        <form method="post">
-          {% csrf_token %}
-          {{ merge_form|bootstrap }}
-          <input class="btn btn-primary" type="submit" value="Confirm merge">
-        </form>
-    </div>
+<div class="row">
+  <div class="col-12">
+    <h3 class="highlight">Merge:</h3>
+    <form method="post">
+      {% csrf_token %}
+      {{ merge_form|bootstrap }}
+      <input class="btn btn-primary" type="submit" value="Confirm merge">
+    </form>
+  </div>
 </div>
 
 {% endblock content %}