If you're encountering an issue with blue underlined formatting overriding your desired text formatting for text links in Webflow, there are a few potential solutions you can try:
1. Check default browser styles: Most browsers have default styles for specific HTML elements, including links. These default styles can sometimes override the custom styles applied in Webflow. To fix this, you can apply CSS styles specifically to the link elements in Webflow to ensure your desired formatting is applied consistently. Use the class or combo class feature in Webflow's Designer to target the links and customize their appearance.
2. Override default link styles: You can effectively override default link styles by introducing a CSS rule that targets the links and applies the desired formatting. For example, you could add a custom code block in the head section of your Webflow project settings or apply the custom CSS within the Designer's custom code panel. Use the `text-decoration` property to remove underlines and the `color` property to set the desired color for link text.
3. Use combo classes: Combo classes in Webflow allow you to define styles that are more specific and override conflicting default or parent styles. When you encounter a situation where the default link styles are overriding your text formatting, you can create a combo class for the link element and define the desired formatting rules within it. This way, the combo class will take precedence over the default styles.
4. Check for inherited styles: If you're using a parent element with formatting properties that get inherited by the links, it may be causing your issue. Inspect the parent element to see if it has any conflicting styles that affect the link formatting. You can adjust or remove those styles to allow your link formatting to take effect independently.
5. Prioritize your CSS selectors: Ensure that the CSS selectors you're using to target the link elements have the correct specificity. When selectors have equal specificity, the latest rule defined usually takes effect. By properly prioritizing your selectors, you can ensure that your desired formatting rules are applied and override any conflicting default styles.
Remember, it's important to preview and test your changes across different browsers and devices to ensure consistent results.