Add this custom css:
.naked-header .header-wrap {
top: 0;
}
If you want naked header on mobile, you can add this custom css:
@media only screen and (max-width: 767px) {
.naked-header #header-section, .naked-header #header-section:before, .naked-header #header .is-sticky .sticky-header, .naked-header .is-sticky #header.sticky-header {
background: transparent;
}
}
Unfortunately changing that functionality would require adjusting the responsive css – currently we don’t have an option to set when the menu swaps from standard to mobile. It’s not feasible to detect how many mobile items are visible and then swap when space has run out, only swap on the detection of width of the viewport.
– Ed