Hello,
Thanks for your Kind Patience!
This can be easily modified in the sass/shortcodes/_flipcard.scss File. Simply find the:
[ch_pre type="scss"]&:hover & {
@include transition(transform $flipcard-transition);
}[/ch_pre]
and
[ch_pre type="scss"]&-front,
&:hover &-back {
-webkit-transform: rotateY(0deg);
transform: rotateY(0deg);
-webkit-transform-style: preserve-3d;
transform-style: preserve-3d;
}
&:hover &-front {
-webkit-transform: rotateY(-180deg);
transform: rotateY(-180deg);
-webkit-transform-style: preserve-3d;
transform-style: preserve-3d;
}[/ch_pre]
and change the &:hover with .flip-card-reverse Class. This will Flip the Flip Card only when it has the .flip-card-reverse Class which you can consider adding via JS Events like click.
You can find the Flip-Card CSS Transition Values in the sass/_variable.scss File:
[ch_pre type="scss"]$flipcard-transition : 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);[/ch_pre]
There is also a super simple way to add Static Cards:
[ch_pre]

Hello World
Lorem ipsum dolor sit amet consectetur adipisicing elit. Corrupti, perferendis?
[/ch_pre]
Hope this Helps!
Let us know if we can help you with anything else or if you find any further issues.