From: Ben Shum Date: Thu, 9 Aug 2012 16:27:57 +0000 (-0400) Subject: TPAC - fix alignment of "You are now browsing..." in shelf browser X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=31bd6374e688ebe27f6de860b2012f2963bea9eb;p=working%2FEvergreen.git TPAC - fix alignment of "You are now browsing..." in shelf browser The "You are now browsing..." message does not align to the center of the page. Changing the
to a

seems to properly align the text. Along the way, we should remove the extra and (the strong is redundant with the css being inherited by color_4 class) and make the new single line message more i18n-friendly for future translations. Credit to Michael Peters for noticing the problem and thanks to Dan Scott, Lebbeous Fogle-Weekley, and Thomas Berezansky for help via IRC for the i18n-bits. Signed-off-by: Ben Shum --- diff --git a/Open-ILS/src/templates/opac/parts/record/cnbrowse.tt2 b/Open-ILS/src/templates/opac/parts/record/cnbrowse.tt2 index b9498bbea1..345a16533b 100644 --- a/Open-ILS/src/templates/opac/parts/record/cnbrowse.tt2 +++ b/Open-ILS/src/templates/opac/parts/record/cnbrowse.tt2 @@ -5,10 +5,9 @@

-
- [% l("You are now browsing") %] - [% ctx.browsing_ou.name | html %] -
+

+ [% l("You are now browsing [_1]", ctx.browsing_ou.name) | html %] +