Have the Page Title or Block BreadCrumbs as an always visible overlay at the top of the screen when scrolling down

You just need

.flex.flex-row:has(.ls-page-title) {
        position: sticky;
        top: 0;
        z-index: 999;
        background: var(--ls-primary-background-color);
}
1 Like