Hi there,
is it possible to add animation while opening tabs?
thanks
Hey!
Try adding this code to the Quick CSS:
.tab_content {
opacity: 0;
-webkit-transition: opacity 0.3s linear;
-moz-transition: opacity 0.3s linear;
transition: opacity 0.3s linear;
}
.tab_content.active_tab_content {
opacity: 1;
}
Cheers!
Josue
It works, thank you!