[Resolved] I want to keep woocommerce single product tab list horizontally on mobile.

Home Forums Support [Resolved] I want to keep woocommerce single product tab list horizontally on mobile.

Home Forums Support I want to keep woocommerce single product tab list horizontally on mobile.

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #1001615
    dongsoon

    Hi,
    Currently, woocommerce single product tab lists are listed vertically on mobile.

    I want to keep the woocommerce single product tab list horizontally on mobile.

    tab list

    For reference, the previously used theme solved the problem with the following css code. But this won’t work with GP Premium.

    @media only screen and (max-width: 767px) {
    .woocommerce div.product .woocommerce-tabs ul.tabs li {
        display: inline-block;
    }
    }
    #1001833
    Leo
    Staff
    Customer Support

    Hi there,

    Try this CSS:

    @media (max-width: 768px) {
        .woocommerce div.product .woocommerce-tabs ul.tabs {
            flex-direction: row;
        }
    }

    Adding CSS: https://docs.generatepress.com/article/adding-css/

    Let me know if this helps ๐Ÿ™‚

    #1001961
    dongsoon

    Hi,
    Your proposed code snippet is work well.
    Thanks

    #1001967
    Leo
    Staff
    Customer Support

    No problem ๐Ÿ™‚

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