What is the CSS syntax to remove LINK COLOR, so link color matches parent DIV?

I seen this done before a while back but when searching for it, unable to come up with desired result.

What I’d like to do in custom code CSS syntax to enforce link color to match parent div block or match normal body / paragraph color by default.

Are you talking about inherit?

If so, this snippet should handle what you need:

a, 
.w-tab-link,
.w-nav-link,
.w-dropdown-btn,
.w-dropdown-toggle,
.w-dropdown-link
{
	color: inherit;
}
2 Likes

Brilliant good sir!

For anyone looking, paste this in </body> section in project

<style>
a, 
.w-tab-link,
.w-nav-link,
.w-dropdown-btn,
.w-dropdown-toggle,
.w-dropdown-link
{
	color: inherit;
}
</style>
1 Like