Search Divi Plus Documentation

Search for answers or browse our knowledge base.

< All Topics
Print

How to show two tabs in a single row on a mobile and four tabs in a row on a tablet in DP Tabs ?

Please add the following CSS in Divi Theme Options to show two tabs in a single row on a mobile and four tabs in a row on a tablet in the Divi Plus Tabs module.

@media screen and (max-width: 980px) {
    
    .dipl_tabs .dipl_tab_wrapper .dipl_tabs_controls {
        flex-wrap: nowrap;
    }
}

@media screen and (max-width: 767px) {
    
    .dipl_tabs .dipl_tabs_item_title .dipl_tabs_item_title_inner_wrap img {
        margin-left: 0;
        width: 100px !important;
    }

    .dipl_tabs .dipl_tab_wrapper .dipl_tabs_controls {
        flex-wrap: wrap;
    }
}
Was this article helpful?
0 out Of 5 Stars
5 Stars 0%
4 Stars 0%
3 Stars 0%
2 Stars 0%
1 Stars 0%
How can we improve this article?
Please submit the reason for your vote so that we can improve the article.