diff --git a/data/cubes.comment.css b/data/cubes.comment.css
index 17c5b99ece0fb4f5ec57554f59a6f01075fe863c_ZGF0YS9jdWJlcy5jb21tZW50LmNzcw==..5ceb1605a0ec595980511e25aa36a01e5204f382_ZGF0YS9jdWJlcy5jb21tZW50LmNzcw== 100644
--- a/data/cubes.comment.css
+++ b/data/cubes.comment.css
@@ -39,3 +39,7 @@
 li.comment li.comment {
   margin-left: 2.8em;
 }
+
+.replyComment {
+  padding-left: 30px;
+}
diff --git a/views.py b/views.py
index 17c5b99ece0fb4f5ec57554f59a6f01075fe863c_dmlld3MucHk=..5ceb1605a0ec595980511e25aa36a01e5204f382_dmlld3MucHk= 100644
--- a/views.py
+++ b/views.py
@@ -158,7 +158,7 @@
             maxsize = self._cw.property_value('navigation.short-line-size')
             text = safe_cut(text, maxsize)
         self.w(u'<div class="commentBody">%s</div>\n' % text)
-        self.w(u'<div id="comment%sHolder"></div>' % entity.eid)
+        self.w(u'<div id="comment%sHolder" class="replyComment"></div>' % entity.eid)
 
 
 class CommentThreadView(TreeViewMixIn, baseviews.ListView):
@@ -180,7 +180,6 @@
         entity = self.cw_rset.get_entity(row, col)
         self.wview('inlinecommentform', None, commented=entity)
 
-
 class InlineEditCommentForm(FormViewMixIn, EntityView):
     __regid__ = 'editcomment'
     __select__ = implements('Comment')