@@ -, +, @@ links in the top frame G131 of WAI guidelines: The objective of this technique is to ensure that the label for any interactive component within Web content makes the component's purpose clear. the page. --- koha-tmpl/opac-tmpl/prog/en/css/opac.css | 5 +++++ koha-tmpl/opac-tmpl/prog/en/includes/masthead.inc | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) --- a/koha-tmpl/opac-tmpl/prog/en/css/opac.css +++ a/koha-tmpl/opac-tmpl/prog/en/css/opac.css @@ -2823,3 +2823,8 @@ body#opac-main #opacmainuserblockmobile { .header-inline { display: inline; } +.off-left { + position: absolute; + left: -999px; + width: 990px; +} --- a/koha-tmpl/opac-tmpl/prog/en/includes/masthead.inc +++ a/koha-tmpl/opac-tmpl/prog/en/includes/masthead.inc @@ -8,7 +8,7 @@ [% END %] [% IF ( ShowOpacRecentSearchLink ) %] -
  • Search history [x]
  • +
  • Search history [x]
  • [% END %] [% IF ( loggedinusername ) %]
  • Log Out
  • [% END %] --