Last active
April 8, 2025 21:24
-
-
Save askwpgirl/b54e625717c12d048b9b4d86e1507e10 to your computer and use it in GitHub Desktop.
Elementor Accessibile Hyperlinks and Hover State
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Add this CSS to your Custom CSS in Site Settings | |
** or custom.css */ | |
/* Underline hyperlinks in text widgets */ | |
.elementor-widget-text-editor a { | |
text-decoration: underline; | |
} | |
.elementor-widget-text-editor a:hover { | |
text-decoration: none; | |
} | |
/* Underline post grid title on hover */ | |
.elementor-post__title a:hover, | |
.elementor-heading-title a:hover, | |
.elementor-icon-list-item a:hover { | |
text-decoration: underline; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment