diff --git a/include/staff/ticket-view.inc.php b/include/staff/ticket-view.inc.php
index 82212dea55d234c86ebe807034f9f85ca3488f5e..481017f5a09093cf66288bae4e6c4ddb5a48007e 100644
--- a/include/staff/ticket-view.inc.php
+++ b/include/staff/ticket-view.inc.php
@@ -200,12 +200,8 @@ if($ticket->isOverdue())
             <?php
             // Status change options
             echo TicketStatus::status_options(); ?>
-            <span class="action-button ticket-response pull-right"data-placement="bottom" data-toggle="tooltip" title="Internal Note">
-                <a href="#reply"><i class="icon-file-text"></i></a>
-            </span>
-            <span class="action-button ticket-response pull-right" data-placement="bottom" data-toggle="tooltip" title="Post Reply">
-                <a href="#note"><i class="icon-mail-reply"></i></a>
-            </span>
+                <a href="#" class="post-note ticket-response action-button pull-right" data-placement="bottom" data-toggle="tooltip" title="Internal Note"><i class="icon-file-text"></i></a>
+                <a href="#" class="post-reply ticket-response action-button pull-right" data-placement="bottom" data-toggle="tooltip" title="Post Reply"><i class="icon-mail-reply"></i></a>
            </div>
         <div class="flush-left">
              <h2><a href="tickets.php?id=<?php echo $ticket->getId(); ?>"
diff --git a/scp/css/scp.css b/scp/css/scp.css
index 05e1bdf686d71b6bac0f5655e02c7e0ba4785284..71b494360cc993cf0b62c83e164259372cd8090a 100644
--- a/scp/css/scp.css
+++ b/scp/css/scp.css
@@ -905,10 +905,16 @@ h2 .reload {
     margin:0;
 }
 /***** top page ticket response buttons *****/
-a.ticket-response {
-    color:#555;
+a.post-reply {
+    color:#555!IMPORTANT;
+}
+a.post-note {
+    background-color:#fff9e2;
+    color:#555!IMPORTANT;
+}
+a.post-note:hover {
+    color:#555!IMPORTANT;
 }
-
 .thread-entry {
     margin-bottom: 15px;
     z-index: 0;