Skip to content

Instantly share code, notes, and snippets.

@arfinmilondev
Created January 29, 2026 05:03
Show Gist options
  • Select an option

  • Save arfinmilondev/1ade68e14e4bcbd95b4df9fb73caf280 to your computer and use it in GitHub Desktop.

Select an option

Save arfinmilondev/1ade68e14e4bcbd95b4df9fb73caf280 to your computer and use it in GitHub Desktop.
Elementor Icon list custom styles
/* Use this to create a underline effect for Elementor Icon List */
li a .elementor-icon-list-text:before {
background: currentColor;
content: "";
bottom: 0px;
right: 0;
position: absolute;
height: 1px;
width: 0%;
transition: .3s all;
}
li:hover a .elementor-icon-list-text:before{
width: 100%;
left: 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment