• Resolved chickadee

    (@chickadee)


    Hello, I’m wondering how to make the tabs be stacked on mobile like an accordion?

    Right now, all tab titles are the top on mobile, so so if the tab is filled with a lot of information, the user has to scroll all the way to the top of the tab section to see the other tab options – like this:

    Tab 1 Title > Tab 2 Title > Tab 3 Title > Tab 1 Contents > Tab 2 Contents > Tab 3 Contents

    I’m trying to set this up so on mobile, the tab title is stacked above the corresponding contents like so:
    Tab 1 Title > Tab 1 Contents > Tab 2 Title > Tab 2 Contents > Tab 3 Title > Tab 3 Contents

    Any help would be much appreciated!

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Support Ashikur Rahman

    (@ashikurwp)

    Hi @chickadee ,

    Thank you for your inquiry. Currently, stacking the tabs like an accordion for the mobile version is not directly available. However, you can achieve a similar effect by using two different widgets:

    1. Advanced Tabs for Desktop: Add the Advanced Tabs widget for desktop and hide it for mobile using the responsive controls.
    2. Advanced Accordion for Mobile: Add the Advanced Accordion widget for mobile and hide it for desktop and tablet using the responsive controls.

    You can refer to this example for more clarity: View Example.

    Additionally, to add a scroll to the Advanced Tab titles, you can use the following custom CSS:

    @media only screen and (max-width: 768px) {
    .eael-advance-tabs .eael-tabs-nav > ul {
    flex-wrap: nowrap !important;
    overflow: scroll;
    flex-flow: row !important;
    }
    .eael-advance-tabs .eael-tabs-nav > ul li {
    flex: 1 1 auto;
    white-space: nowrap;
    }
    }


    Check the demonstration here: https://d.pr/v/B8PyNX

    If you have any further questions or need assistance with the implementation, feel free to ask!

    Best regards,

    Thread Starter chickadee

    (@chickadee)

    Understood, thank you so much!!

    Plugin Support Ashikur Rahman

    (@ashikurwp)

    Hi @chickadee ,

    Thanks for your understanding. If you have a moment, could you please take 30 seconds to leave us a review at this link: https://www.ads-software.com/support/plugin/essential-addons-for-elementor-lite/reviews/#new-post

    Your feedback will help us improve and provide even better service.

    Note : We’re closing this thread. You’re always welcome to reopen the topic again if you face any issues.

    Best regards

Viewing 3 replies - 1 through 3 (of 3 total)
  • You must be logged in to reply to this topic.