Search found 8 matches
- Sun Dec 08, 2019 5:20 pm
- Forum: Accessibility
- Topic: Solution for warning 'No "skip to" link detected' for accessibility
- Replies: 6
- Views: 1807
Re: Solution for warning 'No "skip to" link detected' for accessibility
Hello Albert, thanks for Your response. My best suggestion is: Do not depend on the language of the link-enclosed text (or img-alt)! Instead use the URI directly. If it is a same-page location (simply starting with "#"), than we can assume it is a "skip to"-link. Maybe You are able to look for the s...
- Sun Dec 08, 2019 6:32 am
- Forum: Accessibility
- Topic: Solution for warning 'No "skip to" link detected' for accessibility
- Replies: 6
- Views: 1807
Re: Solution for warning 'No "skip to" link detected' for accessibility
Hello Albert and Validator friends, after reading Your technical details again I suggest an a-link check for page-internal positions, e.g. looking only for <a href=" # ..."> anything not checked </a>. This offers solutions where the text "skip to ..." is placed in img-alt as well as in other languag...
- Sun Dec 08, 2019 6:20 am
- Forum: Accessibility
- Topic: Solution for warning 'No "skip to" link detected' for accessibility
- Replies: 6
- Views: 1807
Re: Solution for warning 'No "skip to" link detected' for accessibility
Hello Albert and all Validator friends, Now I see the real problem of these checks. All the checks are entirely and only in English. What about other languages (ruled by html-lang-values other than starting with "en")? We can't prerequisite that all visitors of our pages understand English! (Not say...
- Sun Dec 08, 2019 5:54 am
- Forum: Accessibility
- Topic: Enhancement suggestion: Color Calculator
- Replies: 3
- Views: 1037
Re: Enhancement suggestion: Color Calculator
Hello Albert, sounds good! It is difficult to me which checker is best. This depends on the kind of accessibility fault: color distance or contrast. Both named services from above check only the contrast and not for color distance. As an additional starting point we could share https://github.com/le...
- Sat Nov 30, 2019 10:11 am
- Forum: Accessibility
- Topic: Enhancement suggestion: Color Calculator
- Replies: 3
- Views: 1037
Enhancement suggestion: Color Calculator
Hello Albert and all Validator friends together! Since many years the Validator checks the contrast as well as the color-distance for the foreground-background color-combination having in back the accessibility- rules for A, AA, and AAA as well as US-508. Often I get warnings for this class. But to ...
- Sat Nov 30, 2019 9:54 am
- Forum: Accessibility
- Topic: Solution for warning 'No "skip to" link detected' for accessibility
- Replies: 6
- Views: 1807
Solution for warning 'No "skip to" link detected' for accessibility
Hello Albert and all Validator friends together! The new Version 19 (2019) warns for every file of my website by; ''No "skip to" links were detected in this document. Consider adding skip links if it would improve accessibility. These links help some users navigate the site and/or quickly skip to th...
- Sun Jul 29, 2018 4:41 am
- Forum: Other CSS HTML Validator
- Topic: Validation: svg with title or desc
- Replies: 2
- Views: 3638
Re: Validation: svg with title or desc
Moving the content of the title attribute to inside the svg enclosed title tag worked well.
-->
Many thanks for clarifying it and the upcoming change of message texts.
Code: Select all
<svg title="tttt" ssss></svg>
Code: Select all
<svg ssss><title>tttt</title></svg>
- Fri Jul 27, 2018 1:03 am
- Forum: Other CSS HTML Validator
- Topic: Validation: svg with title or desc
- Replies: 2
- Views: 3638
Validation: svg with title or desc
For the following source line I get confused by the validation results: <svg title="Siegel: Geprüft durch SIWECOS" width="150" height="58" id="siwecos-seal"></svg> CHV-P2018 (v18.0300) lists one error: The "title" attribute is not valid for the "svg" element. Some valid attributes for this elem...