Home › Forums › Pro Support › Cards, and recovering from the Set Card Styles button › Reply To: Cards, and recovering from the Set Card Styles button
November 4, 2019 at 6:15 pm
#11795
Keymaster
Looks like the only thing missing is the hidden/display on hover meta?
If so, try adding this:
.wpsp-overlay.wpsp-ov-style-one .wp-show-posts-entry-meta {
opacity: 0.0;
-webkit-transform: translateY(1em);
transform: translateY(1em);
-webkit-transition: all 0.3s cubic-bezier(.33, .66, .66, 1);
transition: all 0.3s cubic-bezier(.33, .66, .66, 1);
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
}
.wpsp-overlay.wpsp-ov-style-one .wp-show-posts-inner:hover .wp-show-posts-entry-meta {
opacity: 1;
-webkit-transform: translateY(0);
transform: translateY(0);
}