I am attempting to adjust the hover color specifically for text that contains a link.
Below is the CSS code I have tried, but it changes the color regardless of whether there are links present or not.
h1, h2, h3, h4 {
color:#3F3F3F;
}
h1:hover, h2:hover, h3:hover, h4:hover {
color:#000000;
}