How to change color of hyperlink for just one link

Hi,

I need to change the color of the hyperlink on this page http://www.centralqueenslandpir.org/

In the first section, where it says ‘DEPARTMENT OF HEALTH’, when you hover over the link, it turns grey, and you can’t read it anymore. What CSS do I need to enter so that it will just turn a deep, dark blue on hover over?

Thank you

Hi there,

Please add a class to the link like this:

<a class="white-hover" href="http://www.health.gov.au/internet/main/publishing.nsf/content/mental-pir" style="outline: none;">DEPARTMENT OF HEALTH</a>

Then add this this in the custom CSS:

.white-hover:hover {
     color: #fff;
}

Hope this helps.

Perfect, thank you

Hi @ourphn,

Thanks for writing in.

Happy to hear that.

Feel free to ask us again.

Thanks.