Please could someone show me how I can underline “preferences” (and other text with links) to make it friendly to my visually/ colour vision impaired users? Thank you
Try adding this css to emphasize exactly this place.
.education a {
text-decoration: underline;
}
Or you can do it like this.
.footer-message a {
text-decoration: underline;
}
Perhaps even globally, you can underline all the links on the site.
a {
text-decoration: underline;
}
Just experiment with it.
9 Likes
This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.