diff --git a/files/templates/comments.html b/files/templates/comments.html
index fb46226e1..203fd0ea4 100644
--- a/files/templates/comments.html
+++ b/files/templates/comments.html
@@ -210,8 +210,16 @@
{% if not c.author %}
{{c.print()}}
{% endif %}
- {% if c.author.is_cakeday %}{% endif %}{{c.author_name}}
- {% if c.author.customtitle %} {{c.author.customtitle | safe}}{% endif %}
+
+
+ {% if c.author.is_cakeday %}
+
+ {% endif %}
+ {{c.author_name}}
+
+ {% if c.author.customtitle %}
+ {{c.author.customtitle | safe}}
+ {% endif %}
{% endif %}
{% if c.parent_comment_id and not standalone and level != 1 %}{{c.parent_comment.author_name}}{% endif %}
diff --git a/files/templates/header.html b/files/templates/header.html
index d67bb6e34..6879fac70 100644
--- a/files/templates/header.html
+++ b/files/templates/header.html
@@ -158,7 +158,12 @@