Viewing 1 replies (of 1 total)
  • 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

Viewing 1 replies (of 1 total)

The topic ‘Remove animation on Tabs’ is closed to new replies.