Hello,
The below custom code will make the desktop header visible from a screen width of 896px, but in this case, the desktop header will become visible from 896px up to a desktop width of 1920px and above. In this case, you need to additionally optimize the amount and size of the content so that it fits in the header on this entire segment.
@media (min-width: 896px) {
body .whb-hidden-mobile,
body .whb-visible-lg {
display: flex;
}
body .whb-hidden-desktop,
body .whb-hidden-lg {
display: none;
}
}
Kind Regards