Anchor text doesn't change color

Hello guys
I have an issue with the anchor text color. It should change to green when I insert a link but it doesn’t always do it.
I cannot figure out why.
Please check the index on this post as an example…

https://www.boundlessroads.com/is-it-safe-to-travel-to-mexico/

thanks for shading some light on this issue!:slight_smile:

Isabella

Hello Isabella,

I have checked your site and it looks like the links are getting the right colors assignment when they are just plain text links. Just like this text:

As for the other text like Mexico travel advisory which does not get the color settings because it is wrapped in a strong element and you have this code added to your global CSS:


strong, b {
    color: rgba(45,45,46,.96);
}

So try adding this code as well:


a strong {
    color: rgb(8,134,145);
}

Hope this helps.

Hey guys!
I have just found out the solution of the problem, without adding any extra coding.

I need to add the link BEFORE making it bold and underlining. IN this case it applies the color change :wink:

thanks for your help.

Hi Isabelle,

You might still want to consider adding the code previously suggested just in case you mistakenly wrap the bold text in a line but we’re glad to hear you managed to find a workaround.

Cheers!

Hello Jade sure. will do because it doesn’t work all the times :slight_smile:

thanks a lot.

You’re welcome. Glad we’re able to help.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.