This is happening on your site because the text link color is same as normal text color so you can’t differentiate between them.
You can change text link color by adding the following custom CSS code on your site using this plugin https://wordpress.org/plugins/simple-custom-css/
article .entry-content a {
color: #33BCF2;
}
You can change the color value in the above code to whatever you want to use by referring the following pages.
http://www.w3schools.com/html/html_colors.asp
http://www.w3schools.com/html/html_colorvalues.asp
http://www.w3schools.com/tags/ref_colorpicker.asp
I don’t think the text color has anything to do with it. The actual text link is not even showing up as a link even if i change the color of the text link?
The text links are showing on your site as shown in this screenshot https://ibb.co/hmo5Vk it is text link color issue.
Hi,
The links are working fine now, i managed to change the color successfully. Thanks for all your help it’s much appreciated:-)
You can add the standard underline to your links by adding the following custom CSS.
.entry-content a:hover {
text-decoration: underline;
}
Cheers! 🙂