=== modified file 'sites/all/modules/project_issue/project_issue.module'
--- sites/all/modules/project_issue/project_issue.module	2014-01-16 01:58:51 +0000
+++ sites/all/modules/project_issue/project_issue.module	2014-01-16 05:21:43 +0000
@@ -1814,7 +1814,7 @@
     // Allow comment_easy_reply to take over if it exists.
     if (!module_exists('comment_easy_reply')) {
       $uri = entity_uri('comment', $comment);
-      $uri['options'] += array('attributes' => array('class' => 'permalink', 'rel' => 'bookmark'));
+      $uri['options'] += array('attributes' => array('class' => 'permalink', 'rel' => 'bookmark'), 'html' => TRUE);
       // Use the thread as the link text for comment number.  During preview,
       // the comment thread property does not exist, so we estimate based on
       // the current $node->comment_count value.
@@ -1824,7 +1824,7 @@
       else {
         $thread = $variables['node']->comment_count + 1;
       }
-      $variables['permalink'] = l('#' . $thread, $uri['path'], $uri['options']);
+      $variables['permalink'] = l(t('<span class="element-invisible">Comment </span>#@thread', array('@thread' => $thread)), $uri['path'], $uri['options']);
     }

     // Disable signatures if configured not to show.

=== modified file 'sites/all/themes/bluecheese/css/styles.css'
--- sites/all/themes/bluecheese/css/styles.css	2013-12-09 19:10:18 +0000
+++ sites/all/themes/bluecheese/css/styles.css	2014-01-18 01:05:55 +0000
@@ -469,8 +469,11 @@
 .comment h3.comment-title a {
   word-spacing: normal;
 }
+.comment h3.permalink-wrapper {
+  margin: 0;
+}
 .comment .permalink {
-  font-size: 1.1538em;
+  font-size: 0.9375em;
   font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
   font-weight: bold;
   line-height: 1.6875em;

=== modified file 'sites/all/themes/bluecheese/sass/partials/common/_comment.scss'
--- sites/all/themes/bluecheese/sass/partials/common/_comment.scss	2013-05-02 10:56:53 +0000
+++ sites/all/themes/bluecheese/sass/partials/common/_comment.scss	2014-01-18 01:05:52 +0000
@@ -14,8 +14,11 @@
       word-spacing: normal;
     }
   }
+  h3.permalink-wrapper {
+    margin: 0;
+  }
   .permalink {
-    font-size: 1.1538em;
+    font-size: 0.9375em;
     font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
     font-weight: bold;
     line-height: 1.6875em;

=== modified file 'sites/all/themes/bluecheese/tpl/comment.tpl.php'
--- sites/all/themes/bluecheese/tpl/comment.tpl.php	2013-05-01 21:38:22 +0000
+++ sites/all/themes/bluecheese/tpl/comment.tpl.php	2014-01-18 01:02:24 +0000
@@ -1,11 +1,16 @@
 <div class="<?php print $classes; ?> clearfix"<?php print $attributes; ?>>
   <?php print $picture ?>

-  <?php print render($title_prefix); ?>
-  <h3<?php print $title_attributes; ?>><?php print $title ?></h3>
-  <?php print render($title_suffix); ?>
+  <?php if ($title): ?>
+    <?php print render($title_prefix); ?>
+    <h3<?php print $title_attributes; ?>><?php print $title ?></h3>
+    <?php print render($title_suffix); ?>
+    <?php print $permalink; ?>
+  <?php endif; ?>

-  <?php print $permalink; ?>
+  <?php if (!$title): ?>
+    <h3 class="permalink-wrapper"><?php print $permalink; ?></h3>
+  <?php endif; ?>

   <div class="submitted">
     <?php print $submitted; ?>
