Links in headlines are the wrong color

I’m having a little problem with the color of links in headlines. I have set the blue colors I’d like for my links (base and interactive) and it works correctly everywhere, unless there is a link in headline. The link colors are even correct in a subheadline, but not in the headline itself.

The only thing I’ve done to further customize my links is added this, so links are bolder:
/* unvisited link /
a:link {
font-weight: 600;
}
/
mouse over link */
a:hover {
font-weight: 600;
}

Can you help me find out why my links in headlines are black instead of blue? Here’s a little page I created, to illustrate my problem: https://capsaviation.com/example-link-problem/

Hey @capodanno,

Thanks for reaching out!

Upon checking the source code, there’s a higher CSS priority with the anchor link color.

image

That being said, I suggest updating your custom CSS. To this one:

 /* unvisited link  <em>/
a:link {
font-weight: 600;
color: rgb(36,169,225);
}
/</em>  mouse over link */
a:hover {
font-weight: 600;
}

Please note that custom CSS code is outside the scope of our support. Issues that might arise from the use of custom CSS code and further enhancements should be directed to a third-party developer or you can avail One where we can answer questions outside of the features of our theme.

Hope that helps.

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