Spruce up your site with glowing links/anchors.
When the mouse/pointer hovers over a link, it will glow.
Good for distinguishing plain text from links.
Add to css_additional.css
When the mouse/pointer hovers over a link, it will glow.
Good for distinguishing plain text from links.
Add to css_additional.css
Code:
/* Start Link Hover Glow */
a:hover {
text-decoration: none;
color: #fff;
text-shadow: -1px 1px 8px #ffc, 1px -1px 8px #fff;
-webkit-transition: 500ms linear 0s;
-moz-transition: 500ms linear 0s;
-o-transition: 500ms linear 0s;
transition: 500ms linear 0s;
outline: 0 none;
}
/* End Link Hover Glow */

Comment