Sticky Menu at Medium Breakpoint

I noticed the Sticky Menu inside Themer is disabled once you hit the Medium breakpoint (tablet). Is there a way to keep the Sticky Menu going until you hit the mobile breakpoint?

Hi,

Do you mean the sticky header is available on media devices, but not small devices or you want it to appear on medium and small devices? :slight_smile:

Would like the Sticky Menu to appear in Medium as well as > Medium. Right now, I think it only appears > Medium correct?

If you add the CSS below this should force the header layout to be sticky on medium devices as well.

@media (min-width: 992px) {
  .fl-builder-content[data-type="header"].fl-theme-builder-header-sticky {
      left: 0;
      position: fixed;
      right: 0;
      top: 0;
      width: 100%;
      z-index: 100;
  }
}

can you use this to make mobile header sticky too?