Home Forums WoodMart support forum tabs displays like desktop in mobile mode

tabs displays like desktop in mobile mode

Viewing 10 posts - 1 through 10 (of 10 total)
  • Author
    Posts
  • #552463

    i26980999
    Participant

    tabs displays like desktop in mobile mode

    #552632

    Hello,

    Please try using the below Custom CSS code and paste it to Dashboard >> Theme Settings >> Custom CSS >> Custom CSS for mobile section:

    .wd-nav-tabs[class*="wd-style-underline"] {
        display: flex !important;
        flex-direction: column !important;
        justify-content: flex-end !important;
        align-items: stretch;
        flex-wrap: nowrap;
    }

    Best Regards.

    #552732

    i26980999
    Participant

    Can the content box be displayed on the right side like the desktop?

    #552752

    Hello,

    Unfortunately, it is not possible. HTML structure does not allow solving it by custom CSS to make it look like a desktop. Try to use elementor tab widget for mobile:
    https://ibb.co/Wn3CLJ1

    Best Regards.

    #552753

    i26980999
    Participant

    I can achieve this using this code. . Please help me see if there is anything that needs to be modified in this code.


    @media
    (max-width: 768px) {
    .wd-tabs.tabs-design-aside {
    –wd-header-sp: .001px;
    display: grid;
    grid-template-columns: var(–wd-side-width, 300px) 1fr;
    gap: 20px;
    }
    }

    #552778

    Hello,

    Your tabs page gives a 404 error. Can you please share the page url and share the wp logins details so i will further check on your site and give you a possible solution.

    Best Regards.

    #552889

    i26980999
    Participant

    I used a set of codes to achieve this effect. Please help me see what is wrong with my code. This is a temporary website and the content can be modified at will.


    @media
    (max-width: 768px) {
    .wd-tabs.tabs-design-aside {
    –wd-header-sp: .001px;
    display: grid;
    grid-template-columns: var(–wd-side-width, 300px) 1fr;
    gap: 20px;

    }

    .wd-nav-tabs {
    flex-wrap: wrap;
    white-space: nowrap;
    justify-content: flex-start;
    height: 300px;
    }

    .wd-tab-content-wrapper {
    height: 300px;
    overflow-y: scroll;
    }

    }

    #552976

    Hello,

    This code is working on your site. You can use it and change the value as per your requirements.

    Best Regards.

    #552994

    i26980999
    Participant

    I don’t know much about CSS. Is there any part of the code I sent that needs to be optimized and modified to make it more stable?

    #553092

    Hello,

    Now it is working fine. If you have any issues feel free to contact us.

    Best Regards.

Viewing 10 posts - 1 through 10 (of 10 total)