diff --git a/library/ZendAfi/View/Helper/ListeNotices/Mur.php b/library/ZendAfi/View/Helper/ListeNotices/Mur.php
index dbd8b95897de7c07cdf3226d8f338589d737c140..77fd78699552bac5d70eed5e4265da185d4b297e 100644
--- a/library/ZendAfi/View/Helper/ListeNotices/Mur.php
+++ b/library/ZendAfi/View/Helper/ListeNotices/Mur.php
@@ -46,16 +46,16 @@ class ZendAfi_View_Helper_ListeNotices_Mur extends ZendAfi_View_Helper_ListeNoti
                                                                       $notice->getTitrePrincipal())]),
                           ['class' => 'notice_titre'])];
 
-    $datas [] = $this->_tag('span',
+    $datas[] = $this->_tag('span',
                             $this->view->notice_LienRebondAuteur($notice),
                             ['class' => 'notice_auteur']);
 
-    $datas []=
-      (strrchr($champs,'9') && $notice->isNouveaute())
-      ? $this->_tag('span',
-                    $this->_('Nouveauté'),
-                    ['class' => 'notice_nouveaute'])
-      : '' ;
+
+    if (strrchr($champs, Class_Codification::CODE_NOUVEAUTE)
+        && $notice->isNouveaute())
+      $datas[] = $this->_tag('span',
+                             $this->_('Nouveauté'),
+                             ['class' => 'notice_nouveaute']);
 
     $html = $this->_tag('div',
                         $this->view->iconeSupport($notice->getTypeDoc()))
diff --git a/public/opac/css/global.css b/public/opac/css/global.css
index be3d94192414f3123296fb76926a12d1501ff498..a667119e2ce5aa13ff124f26f773ce02c9cdbc07 100644
--- a/public/opac/css/global.css
+++ b/public/opac/css/global.css
@@ -1756,11 +1756,11 @@ body.abonne_multimedia-hold-view .actions a {
     opacity: 1;
 }
 
-.liste_mur .notice>div span {
-    margin-right: 5px;
+.liste_mur .notice > div.titre_auteur > * + *:before {
+    content: '-';
+    margin: 0px 5px;
 }
 
-
 .liste_mur .notice_wrapper:hover .notice .titre_auteur {
     background-color: #ddd;
 }