Can you tell me if your theme validates according to:
* WCAG 1.0 Priority 1
* XHTML 1.0 Strict

Also, info on Section 508 compliance would also be useful.

I haven't found an easy way to scan through those themes which comply.

CommentFileSizeAuthor
#5 page.tpl_.php_.patch447 bytesmgifford
#5 node.tpl_.php_.patch497 bytesmgifford
Support from Acquia helps fund testing for Drupal Acquia logo

Comments

mgifford’s picture

Just the CSS validates in this theme.

peterx’s picture

6.x-1.6 validates as XHTML 1.0 strict, WAI A and AA, plus US 508 with just one change. The change is described at http://d-theme.com/burnt and the page implements the change plus has validation buttons.

You can still make a page fail validation by including bad content, something that is nothing to do with the theme. As an example, in the test page I created a link from the test page back to drupal.org. In the link I specified the link text of Burnt and that is the same as the link text in one of the menu entries. Under WAI AA, duplicate link text is illegal unless you provide title atrtributes in both links to distinguish the links. The menu already includes the title attribute. All I had to do was include a title in the link I created on the page.

peterx’s picture

6.x-1.6 node.tpl.php:
Change:
<em class="clear links"><?php print $links; ?></em>
to:
<div class="clear links"><?php print $links; ?></div>
because $links can contain HTML elements.

Change:
<em class="clear terms"><?php print $terms; ?></em>
to:
<div class="clear terms"><?php print $terms; ?></div>
because $terms can contain HTML elements.

peterx’s picture

6.x-1.6 style.css:
font-family: Lucida Grande, Tahoma, Arial, Helvetica, sans-serif;
should be:
font-family: "Lucida Grande", Tahoma, Arial, Helvetica, sans-serif;

mgifford’s picture

FileSize
497 bytes
447 bytes

Here's a patch for this. Also seems to be a problem with the footer in the page.tpl.php file.

mgifford’s picture

Issue tags: +Accessibility

adding accessibility tag