Resolving Unwanted Link Underlines and Styling Conflicts with Royal Elementor Addons
Content
Many users of the Royal Elementor Addons and Templates plugin report a common and frustrating issue: after installation, all the links on their website suddenly become underlined. This global CSS change can override your theme's design and often resists standard customization attempts. This guide will explain why this happens and provide the most effective solutions to regain control of your site's styling.
Why Does This Happen?
The plugin includes its own set of base CSS styles to ensure its widgets display correctly. A common thread in the support forums (like this one and this one) shows that a style rule for underlining links is part of this package. This global style can conflict with your active theme or other plugins, making your custom text-decoration: none; CSS declarations seem ineffective due to CSS specificity rules.
How to Fix Unwanted Link Underlines
Solution 1: Use More Specific CSS (Quick Fix)
Often, your custom CSS is being overridden. You can win the "specificity war" by using a more specific selector. Instead of just a {...}, try targeting links within a specific container, like your main content wrapper.
.your-content-container a {
text-decoration: none !important;
}
Note: Using !important is a quick way to override other styles but should be used sparingly.
Solution 2: Leverage the Plugin's Built-in Option (Recommended)
In response to user feedback, the Royal Elementor Addons and Templates team added an option to disable its custom CSS. This is the cleanest solution.
- Go to your WordPress Dashboard.
- Navigate to Royal Addons > Settings.
- Look for an option to disable the plugin's custom CSS or advanced CSS settings.
- Save your changes and check your site.
If this option is not visible, ensure your plugin is updated to the latest version.
Solution 3: Isolate Conflicts with Other Plugins
As seen in one support thread, a user discovered a conflict with the Ultimate Post Kit plugin. To check for a similar conflict on your site:
- Deactivate all your plugins except for Royal Elementor Addons and Elementor.
- Check if the underlining issue persists. If it is gone, a conflict exists.
- Reactivate your plugins one by one, checking your site after each activation, to identify the culprit.
- Once identified, you can look for specific CSS to override the conflicting plugin's styles or choose an alternative plugin.
When to Seek Further Help
If the solutions above do not resolve your issue, the problem might be more complex and related to a specific combination of your theme, plugins, and WordPress configuration. In these cases, the best course of action is to gather detailed information about your setup using WordPress's built-in tools (Tools > Site Health > Info) to provide a complete picture when seeking help from the community or the plugin's developers.
By following these steps, you should be able to resolve unwanted link underlines and restore your website's intended design while still benefiting from the powerful widgets offered by Royal Elementor Addons.
Related Support Threads Support
-
Unable to change title size in Feature List Widgethttps://wordpress.org/support/topic/unable-to-change-title-size-in-feature-list-plugin/
-
Remove underline from title in Feature Listhttps://wordpress.org/support/topic/remove-underline-from-title-in-feature-list/
-
Image and Heading changed after installed pluginhttps://wordpress.org/support/topic/image-and-heading-changed-after-installed-plugin/
-
uploading images to media libraryhttps://wordpress.org/support/topic/uploading-images-to-media-files/
-
Problems with list in publicationhttps://wordpress.org/support/topic/problems-with-list-in-publication/
-
Underlined all linkshttps://wordpress.org/support/topic/underlined-all-links/
-
Disable Custom CSShttps://wordpress.org/support/topic/disable-custom-css-2/
-
change star rating icons to FontAwesome iconshttps://wordpress.org/support/topic/change-star-rating-icons-to-fontawesome-icons/
-
Running Plugin Changes Formattinghttps://wordpress.org/support/topic/running-plugin-changes-formatting/
-
Link underline bughttps://wordpress.org/support/topic/link-underline-bug/
-
conflict: can not hide underlinehttps://wordpress.org/support/topic/conflict-can-not-hide-underline/
-
underlined links from install pluginhttps://wordpress.org/support/topic/underlined-links-from-install-plugin/
-
Links don’t work in my sitehttps://wordpress.org/support/topic/links-dont-work-in-my-site/