form labels are display none
-
With the following CSS:
<style type="text/css"> .enews .screenread { display:none; } </style>
The plugin is attempting to make the form labels accessible to screen reader and invisible to sighted users. However display:none content is not read by screen readers according to this https://webaim.org/techniques/css/invisiblecontent/
Instead the plugin should be doing something like this like the WordPress core uses.
<style type="text/css"> .enews .screenread { display: inline-block; height: 1px; left: -1000em; overflow: hidden; position: absolute; top: -1000em; width: 1px; } </style>
https://www.ads-software.com/plugins/genesis-enews-extended/
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘form labels are display none’ is closed to new replies.