Site logo

[Resolved] horizontal scroll container

Home Forums Support [Resolved] horizontal scroll container

Home Forums Support horizontal scroll container

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #1538583
    melvin

    Hi,

    Can i possibly achieve the below? Instead of becoming 2 row in mobile, I wish to achieve become 1 row in mobile with horizontal scroll.

    https://imgur.com/a/jzDAgiv

    This is the page I use GB on

    Thanks

    #1538657
    David
    Staff
    Customer Support

    Hi there,

    try adding this CSS:

    @media(max-width: 769px) {
        .gb-grid-wrapper.scrollable {
            flex-wrap: nowrap;
            overflow-x: auto;
            scroll-snap-type: mandatory;
        }
        .gb-grid-wrapper.scrollable .gb-grid-column {
            flex: 1 0 50%;
            scroll-snap-align: start;
        }
    }

    Then edit the Grid Container ( the parent wrapped ) and give it a CSS Class of: scrollable

    #1541667
    melvin

    Hi David,

    Thanks it work well.

    Have a nice day

    Regards,
    Melvin

    #1541894
    David
    Staff
    Customer Support

    You’re welcome

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