Comment on Yahoo redesigns 7 of its sitesparentComments−dredmorbius13ythe text is all styled identically so you have to hover the mouse over a word to notice the link. WTF?Affordance of hyperlinks is key to the Web.I apply the following CSS to most/many sites to identify links: a { color: #427fed; text-decoration: none; }; a:active { background-color: #427fed; color: #fffff6; }; a:hover { text-decoration: underline; } Hrm. I should add a :visited selector as well.−dredmorbius13yI'm liking this color: a:visited { color: #6f32ad; }
Comments
the text is all styled identically so you have to hover the mouse over a word to notice the link. WTF?
Affordance of hyperlinks is key to the Web.
I apply the following CSS to most/many sites to identify links:
Hrm. I should add a :visited selector as well.I'm liking this color: