linking style for h4 or custom class
I am trying to target this link so that it retains its set regular state color which is #5956a5 , but when hovering/focused - I want it to go turquoise.
a.bodyLink:hover, a.bodyLink:active, a.bodyLink:focus {
color: rgb(66,219,215);
text-decoration: none;
}
<h4><strong><a class="bodyLink" href="#" target="_blank">Text Link Here</a></strong></h4>
Not working. My guess is that I need to somehow incorporate the h4 into the CSS?
I'd also like the link to be underlined on regular state - and no decoration upon hovering. This rule wold be targeted consistently for all h4 instances that hyperlink.
Maybe the custom class name of 'bodyLink' is not needed?
Thank you.
