Can't override text link colour using 'All Links' in selector

Hey Webflow Community!
I’m currently working on a project I haven’t touched for a few years and trying to recolour my text links from black to white. I’m trying to override the text-link colour from #000000 to #F7F7F2. I’ve changed the text colour using the ‘All Links’ selector in the right hand panel, however the in text-links still appear to be black.

All of the selectors that are inherited are also set to #F7F7F2 so what gives? I can’t figure out where the black hyperlink style is coming from. Can anyone give me a hand?

Here is the site read-only link if that helps anyone, screenshot of my ‘All Links’ panel with the text colour set to #F7F7F2 as well.

You’ve following custom CSS applied on the link, which is overriding the style.

a {
    text-decoration: underline;
    color: black;
}

Remove it from there and it will work.

1 Like

Ahhh there it is! Thank you so much for your help!

1 Like

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