Thank you. That works for me! Next question:
What if there is a link in the <h3> tag like <h3>link here</h3> and there is already h3 link styles. Can I overwrite them?
I have tried <h3 class="underline"> and creating link styles for underline like so:
Code:
.underline a:link, .underline a:active, .underline a:visited {
text-decoration:hover;
color:yellow;
}
.underline a:hover {
text-decoration:none;
color:yellow;
}
But the H3 link styles prevail.
|