Top bar and menu disappears on mobile phone

Hello,

Thanks a great theme.

Unfortunately, I have an issue when browsing my site - www.mugato.com on a mobile phone - the top bar and menu does not appear when you scroll the page. I have tested in both Safari and Chrome. It is working on desktop and tablet.

Can you help please?

Thanks, Torben

Good evening Torben

by default it should not be visible on mobile devices, you can check our demo we have the same, but you can use this code in appearance> customize > additional css to make it fixed:

@media (max-width: 991px){
header#masthead {
position: fixed;
width: 100%;
z-index: 999;
}
}