diff --git a/core/themes/bartik/css/style.css b/core/themes/bartik/css/style.css
index a7a36a8..78263bb 100644
--- a/core/themes/bartik/css/style.css
+++ b/core/themes/bartik/css/style.css
@@ -757,6 +757,10 @@ ul.links {
   border-right: 1px solid #fff4f4;
 }
 
+.comment-footer{
+  display:table-row;
+}
+
 /* ------------------ Sidebar ----------------- */
 .sidebar .section {
   padding-top: 10px;
diff --git a/core/themes/bartik/templates/comment.html.twig b/core/themes/bartik/templates/comment.html.twig
index 2a8351c..f51d28a 100644
--- a/core/themes/bartik/templates/comment.html.twig
+++ b/core/themes/bartik/templates/comment.html.twig
@@ -65,65 +65,61 @@
 #}
 <article class="{{ attributes.class }} clearfix"{{ attributes }} role="article">
 
-  <header class="comment-header">
+  <div class="attribution">
+    {{ user_picture }}
 
-    <div class="attribution">
-      {{ user_picture }}
-
-      <div class="submitted">
-        <p class="commenter-name">
-          {{ author }}
-        </p>
-        <p class="comment-time">
-          {{ created }}
-        </p>
-        <p class="comment-permalink">
-          {{ permalink }}
-        </p>
-        {#
-          // Indicate the semantic relationship between parent and child comments
-          // for accessibility. The list is difficult to navigate in a screen
-          // reader without this information.
-        #}
-        {% if parent %}
-        <p class="comment-parent visually-hidden">
-          {{ parent }}
-        </p>
-        {% endif %}
-      </div>
-    </div> <!-- /.attribution -->
-
-    <div class="comment-text">
-      <div class="comment-arrow"></div>
-
-      {% if new %}
-        <span class="new">{{ new }}</span>
+    <div class="submitted">
+      <p class="commenter-name">
+        {{ author }}
+      </p>
+      <p class="comment-time">
+        {{ created }}
+      </p>
+      <p class="comment-permalink">
+        {{ permalink }}
+      </p>
+      {#
+        // Indicate the semantic relationship between parent and child comments
+        // for accessibility. The list is difficult to navigate in a screen
+        // reader without this information.
+      #}
+      {% if parent %}
+      <p class="comment-parent visually-hidden">
+        {{ parent }}
+      </p>
       {% endif %}
+    </div>
+  </div> <!-- /.attribution -->
 
-      {{ title_prefix }}
-      <h3{{ title_attributes }}>{{ title }}</h3>
-      {{ title_suffix }}
-    </div> <!-- /.comment-text -->
+  <div class="comment-text">
+    <div class="comment-arrow"></div>
 
-  </header> <!-- /.comment-header -->
+    {% if new %}
+      <span class="new">{{ new }}</span>
+    {% endif %}
 
-  <div{{ content_attributes }}>
-    {# We hide the links now so that we can render them later. #}
-    {% hide(content.links) %}
-    {{ content }}
+    {{ title_prefix }}
+    <h3{{ title_attributes }}>{{ title }}</h3>
+    {{ title_suffix }}
 
-  </div> <!-- /.content -->
+    <div{{ content_attributes }}>
+      {# We hide the links now so that we can render them later. #}
+      {% hide(content.links) %}
+      {{ content }}
+    </div> <!-- /.content -->
 
-  <footer class="comment-footer">
-    {% if signature %}
-    <div class="user-signature clearfix">
-      {{ signature }}
-    </div>
-    {% endif %}
+    <footer class="comment-footer">
+      {% if signature %}
+      <div class="user-signature clearfix">
+        {{ signature }}
+      </div>
+      {% endif %}
+
+      <nav>
+        {{ content.links }}
+      </nav>
+    </footer> <!-- /.comment-footer -->
 
-    <nav>
-      {{ content.links }}
-    </nav>
-  </footer> <!-- /.comment-footer -->
+  </div> <!-- /.comment-text -->
 
 </article>
