A user names @beamit asked if there was a way to disable the FLIP animation on a CARD. Someone from the Themeco staff said “no, sorry, that would require custom work”. I was also curious if the disabling the flip was an element setting. It should be, but since it’s not… here ya go!
Give your card a CSS class called “nocard” then add the following CSS to your stylesheet. DONE! The card won’t flip.
.noflip .x-card-faces {
transform: none !important;
animation: none !important;
}