Forum Moderators: not2easy
I just want white text and light gray when the hovered on the hyperlink.
If there is a site to look at to help that would be great. I've been googling sites all over the place but they are a little too deep.
Thanks!
.Division h2 a:hover {
color: #FFF;
background: #CCC;
}
If you're just targeting one <a> tag, you can do an in-line style:
<a href="link" style="a:hover {color: #FFF; background: #CCC;}">Link Text</a>
Hope this answers your question.