tag section.
Yes, you can customize the underline color of a text link in Webflow, but it requires using custom CSS because Webflow’s visual interface doesn’t let you style underline colors separately by default.
custom-underline
.Go to Page Settings (if it's for one page) or Project Settings > Custom Code (for site-wide changes).
Paste the following line in the Before tag section:
<style>.custom-underline { text-decoration: underline; text-decoration-color: red; }</style>
Replace red
with the underline color you want to use (e.g., #FF6600
or rgba(255, 0, 0, 0.5)
).
Webflow doesn’t support underline color changes natively, but you can control it using custom CSS with text-decoration-color
. Assign a unique class to your text link and define the color via custom code for full control.