Posted by ZoeN on March 8, 2009 at 7:36am
Jump to:
| Project: | Abac |
| Version: | 5.x-1.x-dev |
| Component: | Code |
| Category: | task |
| Priority: | normal |
| Assigned: | Unassigned |
| Status: | active |
Issue Summary
I ported Abac and Abac Dark from 5.x to 6.x today. (By the way, I used Wesley Tanaka's instructions on how to port a theme from 5 to 6, and all the code tasks took me about nine minutes. Nice one, wtanaka!)
My 6.x version of Abac is attached (abac-6.x.zip); it's unofficial, so use with due caution.
| Attachment | Size |
|---|---|
| abac-6.x.zip | 75.04 KB |
Comments
#1
Your d6 theme is loaded up at http://d-theme.com/abac and it validates as XHTML 1.0 Strict and WCAG (WAI) A. At WCAG AA, there are two errors. The following line needs a title to distinguish the link from a link in the menues.
<a href="http://www.drupal.org/">Drupal</a>The theme jumps from a heading level 1 to the following heading level 3, creating improperly nested headings. This heading could be a h2 to fix the problem.
<h3>User login</h3>The theme validates as CSS 3 and has the following error as CSS 2.1.
URI : http://d-theme.com/sites/all/themes/abac/print.css49 #wrapper #container #header h1, #wrapper #container #header h1 a:link, #wrapper #container #header h1 a:visited Property text-shadow doesn't exist in CSS level 2.1 but exists in [css2, css3] : none
I also suggest adding the dir="" attribute to html as shown at http://d-theme.com/candy_corn
#2
Thanks, I really needed that.
#3
Thank you for doing this.