Hi @marcommbumi1968 ,
Currently we don’t have option for remove animation on tabs widget and put the title/tab wrapper on the bottom side. But you can do this by adding some CSS.
Please add this below CSS code in Appearance → Customize → Additional CSS
.ekit-wid-con .elementkit-tab-wraper {
display: flex;
flex-direction:column-reverse;
}
.ekit-wid-con .elementkit-nav-link {
-webkit-transition: none;
-o-transition: none;
transition: none;
}
.elementkit-tab-wraper .elementkit-tab-content .fadeIn {
animation-name: none;
}
Let us know if your problem has been fixed or not.
Regards