Group Admins

  • Profile picture of modemlooper
  • Profile picture of Hugo
  • Profile picture of Paul Gibbs

BP-Default

Public Group active 2 weeks, 2 days ago ago

This group is for designer and developer talk on enhancements for the bp-default theme as well as future themes. Got an idea or suggestion, start a new thread. Try and refrain from hijacking a thread with off topic replies.

Default theme: Great job with accessibility (4 posts)

Started 9 months, 2 weeks ago by: Jay Collier

  • Profile picture of Jay Collier Jay Collier said 9 months, 2 weeks ago:

    The default theme does a great job of passing the WAVE accessibility test!

    http://wave.webaim.org/

    Only one change will make it perfect: a label tag for the search terms.

    Currently:
    <input type="text" id="search-terms" name="search-terms" value="" />

    Change to:

    <label for="search-terms" id="search-terms-label">Search the site: </label>
    <input type="text" id="search-terms" name="search-terms" value="" />

    The following CSS could be added to hide the visual label:

    #search-terms-label {
    display: none;
    }

    Thanks!

  • Profile picture of Paul Gibbs Paul Gibbs said 9 months, 2 weeks ago:

    Ticket on http://buddypress.trac.WordPress.org/, please

  • Profile picture of Paul Gibbs Paul Gibbs said 9 months, 2 weeks ago:

    BTW, thanks for the feedback. I run the theme through WAVE and the W3C HTML validator while we were working on it to try to clear what we could. Missed one :)

  • Profile picture of Boone Gorges Boone Gorges said 9 months, 2 weeks ago:

    Thanks so much for the kind words and for the feedback, Jay!