Skip to content

Instantly share code, notes, and snippets.

@askwpgirl
Last active April 8, 2025 21:24
Show Gist options
  • Save askwpgirl/b54e625717c12d048b9b4d86e1507e10 to your computer and use it in GitHub Desktop.
Save askwpgirl/b54e625717c12d048b9b4d86e1507e10 to your computer and use it in GitHub Desktop.
Elementor Accessibile Hyperlinks and Hover State
/* 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