Screen Reader CSS Fix
-
A heads up to the author. The css for the screen reader needs to be adjusted. It is skewing the layout in some mobile devices.
CHANGE
.screen-reader-text {
clip: rect(1px, 1px, 1px, 1px);
position: absolute !important;
}TO
.screen-reader-text {
clip: rect(1px, 1px, 1px, 1px);
position: absolute !important;
height: 1px;
width: 1px;
overflow: hidden;
}Thank you!
- The topic ‘Screen Reader CSS Fix’ is closed to new replies.