Changing the underline color of a text link in Webflow while keeping the text color unchanged is a specific styling task. Here's how you can achieve this.
```css
<style>
.custom-link-underline {
text-decoration: underline;
text-decoration-color: blue; / Your desired underline color /
}
</style>
```
"custom-link-underline" with your specific class name.
.custom-link-underline) to the link.
To change the underline color of a text link without altering its text color in Webflow, you should add a custom CSS class that specifies an underline color. Apply this class to your text link, and ensure the custom CSS is added in Project Settings.