• Resolved bhammondCVL

    (@bhammondcvl)


    Our site gets dinged in accessibility audits because the <select> field for the month view in the calendar header.

    The current markup looks like this:

    <div class="mvSelectNavigation">
    <select>
    <option value="day">Day</option>
    <option value="week">Week</option>
    <option value="month" selected="">Month</option>
    </select>
    </div>

    With a label it might look something like this:

    <div class="mvSelectNavigation">
    <label for="display-select">
    Select a Calendar Display
    </label>
    <select id="display-select">
    <option value="day">Day</option>
    <option value="week">Week</option>
    <option value="month" selected="">Month</option>
    </select>
    </div>

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • Plugin Author codepeople

    (@codepeople)

    Hi,

    We have just made an update that includes a label field readable by screen readers while keeping the same appearance in the browser.

    Thank you for the feedback!

Viewing 1 replies (of 1 total)
  • You must be logged in to reply to this topic.