Instagram-zapier-webflowcms integration

I want to change the number of “items/images” shown on different breakpoints. For example, show 5 on desktop, 3 on phone horizontal. The problem is the “Limit Items” in the collection list settings are not effected by breakpoints. Is there anyway around this?

Screen Shot 2022-05-04 at 9.22.03 PM


Here is my public share link: [LINK][1]
([how to access public share link][2])

Hi Kate,

This might be helpful for you: Limit CMS Items by Breakpoint? - #6 by jasondark?

For your use case, you may want something like this:

<style>
    @media screen and (max-width: 767px) {
        .w-dyn-items :nth-child(n+3) {
            display: none;
        }
    }
</style>
2 Likes

Yes. Thanks so much!