diff --git a/library/ZendAfi/View/Helper/Accueil/News.php b/library/ZendAfi/View/Helper/Accueil/News.php index d51c6e89c1dd7fa477228b895e3755d75f06596b..531b7adac434779b15fb1db22d53324b96bdca1e 100644 --- a/library/ZendAfi/View/Helper/Accueil/News.php +++ b/library/ZendAfi/View/Helper/Accueil/News.php @@ -103,8 +103,9 @@ class ZendAfi_View_Helper_Accueil_News extends ZendAfi_View_Helper_Accueil_Base $title = $article->getTitre(); if ($article->hasSummary()) { $content = $article->getSummary(); - $footer = '<br />'. $this->view->tagAnchor($this->view->url($article->getUrl()), - $this->translate()->_("Lire l'article complet")); + $footer = $this->view->tagAnchor($this->view->url($article->getUrl()), + $this->translate()->_("Lire l'article complet"), + ['class' => 'article_read_full']); } else { $content = $article->getFullContent(); } diff --git a/public/opac/css/global.css b/public/opac/css/global.css index a0a68c59295d0e779132b2f460ef2efaa5a69594..5a29cb32aa5c5936143adfa228b422dbf8d7bc0a 100644 --- a/public/opac/css/global.css +++ b/public/opac/css/global.css @@ -97,6 +97,11 @@ div#header .boiteBanniereGauche .recherche_avancee { } +.article_read_full { + display: block; +} + + /* AVIS */ .avis_show_avis { @@ -1660,4 +1665,6 @@ button.vodeclic_link + img { .navigation a:before { content:'» '; -} \ No newline at end of file +} + +