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.
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;
}
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>