diff --git a/core/themes/bartik/css/style.css b/core/themes/bartik/css/style.css
index 89e4fd4..3a22a55 100644
--- a/core/themes/bartik/css/style.css
+++ b/core/themes/bartik/css/style.css
@@ -762,6 +762,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 48fd391..afbb769 100644
--- a/core/themes/bartik/templates/comment.html.twig
+++ b/core/themes/bartik/templates/comment.html.twig
@@ -66,54 +66,52 @@
 #}
 <article class="{{ attributes.class }} clearfix"{{ attributes }} role="article">
 
-  <header class="comment-header">
 
-    <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 element-invisible">
-          {{ parent }}
-        </p>
-        {% endif %}
-      </div>
-    </div> <!-- /.attribution -->
+  <div class="attribution">
+    {{ user_picture }}
 
-    <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 element-invisible">
+        {{ 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>
+
+    {% if new %}
+      <span class="new">{{ new }}</span>
+    {% endif %}
 
-  </header> <!-- /.comment-header -->
+    {{ title_prefix }}
+    <h3{{ title_attributes }}>{{ title }}</h3>
+    {{ title_suffix }}
 
-  <div{{ content_attributes }}>
-    {# We hide the links now so that we can render them later. #}
-    {% hide(content.links) %}
-    {{ content }}
+    <div class="content comment-body" {{ content_attributes }}>
+      {# We hide the links now so that we can render them later. #}
+      {% hide(content.links) %}
+      {{ content }}
 
-  </div> <!-- /.content -->
+    </div> <!-- /.content -->
+  </div> <!-- /.comment-text -->
 
   <footer class="comment-footer">
     {% if signature %}
