diff --git a/phpBB/docs/CHANGELOG.html b/phpBB/docs/CHANGELOG.html index b0d1ee66be..41ecda5efa 100644 --- a/phpBB/docs/CHANGELOG.html +++ b/phpBB/docs/CHANGELOG.html @@ -144,6 +144,7 @@
{SITE_DESCRIPTION}
- + diff --git a/phpBB/styles/prosilver/theme/content.css b/phpBB/styles/prosilver/theme/content.css index b6d3efa8a3..19f5dfdb3b 100644 --- a/phpBB/styles/prosilver/theme/content.css +++ b/phpBB/styles/prosilver/theme/content.css @@ -44,7 +44,9 @@ ul.topiclist dd { ul.topiclist dfn { /* Labels for post/view counts */ - display: none; + position: absolute; + left: -999px; + width: 990px; } ul.topiclist li.row dt a.subforum { diff --git a/phpBB/styles/prosilver/theme/links.css b/phpBB/styles/prosilver/theme/links.css index 9f3b7e3ae7..0b23449bfb 100644 --- a/phpBB/styles/prosilver/theme/links.css +++ b/phpBB/styles/prosilver/theme/links.css @@ -198,3 +198,10 @@ a.right:hover { text-decoration: none; background-position: 100% 60%; } + +/* invisible skip link, used for accessibility */ +.skiplink { + position: absolute; + left: -999px; + width: 990px; +}