Search code examples
stickyzurb-foundation-6

Foundation sticky only on mobile


How can I have a sticky element with Foundation that sticks only on small breakpoints? data-sticky-on="small" works for small and up


Solution

  • For those interested. I have found this solution when using sass.

    //Desktop settings
    @include breakpoint(medium) {
        //Disable fixed top bar on mobile
        .sticky {
            position: initial !important;
        }
    }