Skip to content

Instantly share code, notes, and snippets.

@ericakfranz
Created February 13, 2016 17:30
Show Gist options
  • Save ericakfranz/0c42009465b8106407f5 to your computer and use it in GitHub Desktop.
Save ericakfranz/0c42009465b8106407f5 to your computer and use it in GitHub Desktop.
Fade in/out image title on hover.
/* Hide Title, Add Transitions */
.envira-gallery-item-inner .title {
opacity: 0;
-webkit-transition: opacity 0.5s ease;
-moz-transition: opacity 0.5s ease;
-o-transition: opacity 0.5s ease;
transition: opacity 0.5s ease;
}
/* Show Title when hovering over gallery image */
.envira-gallery-item-inner:hover .title { opacity: 1; }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment