If text links in Webflow are showing a blue underlined style that overrides your formatting, the issue is likely due to Webflow's default styling or inherited styles from a parent element. Follow these steps to fix it.
1. Check Class Styling
- Select the affected Text Link in the Webflow Designer.
- Look at the Selector field in the Style panel (right-hand side).
- If no custom class is applied, apply a new class to the element (e.g.,
Custom-Link
). - Set the Text Color and Remove Underlining (
Text Decoration: None
).
2. Adjust All Links
Styling
- Open the Style Panel and click the Selector field.
- Choose "All Links" from the list.
- Modify the color, text decoration, or font style as needed.
- This change affects all links unless overridden by a more specific class.
3. Check Parent Elements
- Sometimes, parent elements (like Rich Text Blocks or Global Styles) impose styles on links.
- Click on parent elements and check their Typography settings in the style panel.
- Modify any inherited color or text decoration properties if necessary.
4. Override Browser Defaults with Custom Styling
- If links are still overriding styling, try adding a custom class to enforce your styles.
- Apply !important via Webflow’s embed code if necessary:
- Go to Page Settings > Custom Code > Head Code, then insert:
<style> a { text-decoration: none !important; color: #yourcolor !important; } </style>
- Replace
#yourcolor
with your desired color.
5. Test in Webflow Preview & Published Site
- Click Preview (eye icon in the top-left).
- If the issue persists, publish your site and test it live.
- Some styles only apply correctly after full publishing.
Summary
To fix the blue underlined text links, update All Links styling, apply a custom class, check parent styles, and use custom CSS if necessary. Always preview and publish to confirm the fix.