Within my CSS code,
a.myLink {
hover {font-size: 24;
font-weight: bold;
color: red;
}
I want to reference it as follows:
<a class="myLink" href="http://myUrl" target='_new'>myName</a>
Unfortunately, the CSS is not recognizing this call.
Can anyone help me figure out what I am missing here?