=== modified file 'styles/styles.css' --- styles/styles.css 2010-10-18 19:32:41 +0000 +++ styles/styles.css 2010-10-18 19:51:54 +0000 @@ -1063,6 +1063,21 @@ /** * Comments */ +.node-type-project-issue .comment-inner { + margin-left: 40px; +} + +.node-type-project-issue #content h3.comment-title { + float: left; + font-size: 1.1538em; + font-weight: bold; + margin-left: -40px; +} + +.node-type-project-issue .comment .submitted { + padding-top: 1.5em; +} + .comment .new { background-color: #E6FCB6; padding: 1px 6px 2px; === modified file 'template.php' --- template.php 2010-10-18 03:54:33 +0000 +++ template.php 2010-10-18 19:36:12 +0000 @@ -183,8 +183,6 @@ } $vars['classes'] = implode(' ', $classes); - - $vars['title'] = t('!title by !user', array('!title' => $vars['title'], '!user' => theme('username', $vars['comment']))); } /** @@ -193,7 +191,11 @@ * Changes the default "Submitted by..." text */ function bluecheese_comment_submitted($comment) { - return format_date($comment->timestamp, 'custom', 'F j, Y \a\t g:ia'); + return t('Posted by !username on %datetime', + array( + '!username' => theme('username', $comment), + '%datetime' => format_date($comment->timestamp, 'custom', 'F j, Y \a\t g:ia'), + )); } /**