diff --git a/modules/comment/views/comments.html.php b/modules/comment/views/comments.html.php
index ce99cbe7..575a7eca 100644
--- a/modules/comment/views/comments.html.php
+++ b/modules/comment/views/comments.html.php
@@ -1,4 +1,10 @@
+ if (!$comments->count()): ?>
+
+ = t("No comments yet. Be the first to") ?>
+ !
+
+ endif ?>
- if (!$comments->count()): ?>
-= t("No comments yet. Be the first to comment!") ?>
- endif ?>
diff --git a/themes/default/js/ui.init.js b/themes/default/js/ui.init.js
index 3c6ca777..ffcc3ed3 100644
--- a/themes/default/js/ui.init.js
+++ b/themes/default/js/ui.init.js
@@ -55,10 +55,10 @@ $(document).ready(function() {
// Collapse comments form, insert button to expand
if ($("#gAddCommentForm").length) {
- var showCommentForm = '';
+ var showCommentForm = '';
$("#gAddCommentForm").hide();
$("#gComments").prepend(showCommentForm);
- $("#showCommentForm").click(function(){
+ $(".showCommentForm").click(function(){
$("#gAddCommentForm").show(1000);
});
}