We're merging with GenerateBlocks! Learn more here.

Support Forum

Please login to receive premium support.

Support for the free plugin can be found here.

Home Forums Pro Support Cards, and recovering from the Set Card Styles button Reply To: Cards, and recovering from the Set Card Styles button

#11795
Tom
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);
}