diff --git a/module/bug/css/create.css b/module/bug/css/create.css
index 7fd02ad409..7a8b86f798 100644
--- a/module/bug/css/create.css
+++ b/module/bug/css/create.css
@@ -11,7 +11,8 @@
#tplBoxWrapper > .btn-toolbar {position: absolute; right: 0px; top: 0px;}
#tplBoxWrapper .btn {padding: 4px 8px}
#tplBox li {position: relative;}
-#tplBox li .btn-delete {position: absolute; right: 0; top: 0; display: block; width: 40px; text-align:center;}
+#tplBox li .btn-delete {position: absolute; right: 0; top: -5px; display: block; width: 40px; text-align:center;}
+#tplBox li:hover .btn-delete {color:#fff;}
#tplBox li .tpl-name {padding-right: 40px;}
#module_chosen.chosen-container .chosen-drop {min-width: 400px; border-top: 1px solid #ddd!important}
diff --git a/module/bug/view/buildtemplates.html.php b/module/bug/view/buildtemplates.html.php
index 9a8f4b9271..ad5e38817f 100644
--- a/module/bug/view/buildtemplates.html.php
+++ b/module/bug/view/buildtemplates.html.php
@@ -5,7 +5,7 @@ foreach($templates as $key => $template)
echo "";
if($template->public) echo "{$lang->public} ";
echo $template->title . "";
- if(empty($template->public) or $template->account == $app->user->account)echo "";
+ if(empty($template->public) or $template->account == $app->user->account)echo "";
echo "$template->content";
echo '';
}