ilifau / ili-fau-templates

Landing Page Template for FAU.de
1 stars 1 forks source link

Template Section title #38

Closed xwolfde closed 5 years ago

xwolfde commented 5 years ago

Gemäß WCAG 2.1 AA brauchen Sections einen ARIA Bezeichnung. DIe leere AUszeichnung reicht nicht. In der darauf folgenden h2 ist aber ein Titel:

echo '<section id="ilifautpl-hero" class="' . $ilifautpl_slider_classes . '" aria-label="">';
echo '<div class="ilifautpl-hero-inner">';
echo '<h2 class="screen-reader-text">' . __('Slider', 'ilifautpl') . '</h2>';

Ändern auf:

aria-label="'__('Slider', 'ilifautpl').''"

und die h2 wegmachen.

SebastianHonert commented 5 years ago

Erledigt.