Webflow sync, pageviews & more.
NEW

How can I fix the issue with blue underlined formatting overriding my text formatting for text links in Webflow?

TL;DR
  • Check Class Styling: Select the text link, apply a custom class, and set color/text decoration.
  • Adjust "All Links" Styling: Update global link styles in the Style Panel.
  • Check Parent Elements: Inspect parent components for inherited styles and adjust typography settings.
  • Override with Custom CSS: Use !important in custom code if styles persist.
  • Test & Publish: Preview and publish the site to verify changes take effect.

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).
  • 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.

Rate this answer

Other Webflow Questions