I am attempting to have a link show up in white, without an underline. The text color shows up correctly as white, but the blue underline is stubbornly persisting. I tried text-decoration: none; and text-decoration: none !important; in the CSS to remove the link underline. Neither worked.
The html:
<div class="boxhead"><h2><span class="thisPage">Current Page</span <a href="myLink"><span class="otherPage">Different Page</span></a></h2>
</div>
The css:
.boxhead .otherPage {
color: #FFFFFF;
text-decoration: none;
}
How can I remove the blue underline from the link?