Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save dividezigns/c131ceeb554c5591c9db6c815c403ee2 to your computer and use it in GitHub Desktop.
Save dividezigns/c131ceeb554c5591c9db6c815c403ee2 to your computer and use it in GitHub Desktop.
This code will target the opacity on Divi's navigation bar links. Place this code inside your style.css file in your child theme's directory.
#et-info-email:hover,
#et-secondary-menu > ul > li > a:hover,
#top-menu-nav > ul > li > a:hover,
.et-social-icons a:hover {
opacity: 1;
-webkit-transition: all .4s ease-in-out;
-moz-transition: all .4s ease-in-out;
transition: all .4s ease-in-out;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment