Disable WPBakery Tabs Animation
.vc_tta-panel.vc_animating {
opacity: 0;
}
/* The following code can be used to add a fade animation */
.vc_tta.vc_general .vc_tta-panel.vc_active .vc_tta-panel-body {
animation: vctabsAnimate 1s cubic-bezier(0.4, 0, 0.6, 1) 1;
}
@keyframes vctabsAnimate {
0% {
opacity: 0;
}
100% {
display: block;
opacity: 1;
}
}
Learn how to add custom CSS to your site.