You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The SkipTo script on the Joomla.org homepage registers and displays links to all header and footer elements on the page. These are not the elements the aplugin should be displaying links to. Only the link to the page page header and footer page should be displayed in SkipTo. Headers and footers of elements other than the body element are not landmarks.
To correct this error, you can:
add role attributes to the header (page) and footer (page) tags: <header role="banner" class="header"> and <footer role="conteninfo" class="footer text-center">; in the script settings you must add: 'landmarks: 'main, [role="banner"], [role="conteninfo"]...',
or remove the header and footer tags in the ‘Download Joomla’, ‘Use Joomla’, ‘Learn Joomla’ modules.
Links to nav elements do not have unique accessible names. If there is more than one landmark of a given type on a page, each must have a unique accessible name
To fix this error, add the aria-label attribute to nav elements, for example: <nav class="navigation" role="navigation" aria-label="main"> <nav class="subnav-wrapper" aria-label="secondary"> <nav class="navbar navbar-expand" aria-label="secondary">
In footer: <nav class="navbar navbar-expand" aria-label="socialmedia"> <nav class="navbar navbar-expand" aria-label="quick links">
The text was updated successfully, but these errors were encountered:
The nav part of this issue has been fixed in the base template, there's one last fix to make before we roll it out. I'm expecting a rollout to the sites over the next 1-2 weeks.
Keeping this issue open because the template doesn't affect the markup on the joomla.org site itself for the 1st part.
To correct this error, you can:
<header role="banner" class="header">
and<footer role="conteninfo" class="footer text-center">
; in the script settings you must add:'landmarks: 'main, [role="banner"], [role="conteninfo"]...'
,To fix this error, add the aria-label attribute to nav elements, for example:
<nav class="navigation" role="navigation" aria-label="main">
<nav class="subnav-wrapper" aria-label="secondary">
<nav class="navbar navbar-expand" aria-label="secondary">
In footer:
<nav class="navbar navbar-expand" aria-label="socialmedia">
<nav class="navbar navbar-expand" aria-label="quick links">
The text was updated successfully, but these errors were encountered: