I am facing a problem with my Shopify theme. I recently installed an app called "Hello Bar" to show offers on all pages, but it seems to be incompatible with my theme. The developers of the app suggested adding the following code to my CSS file:
@media screen and (min-width: 1025px){
.page-wrapper{
position: static;
}
}
Although this fixed the issue on desktop, my mobile navigation menu is now collapsed and cannot be closed. To address this, I tried adding the code below:
@media screen and (max-width: 1024px){
.nav-mobile{
display: none;
}
However, clicking the menu button results in a blank menu. Can anyone provide some guidance or a workaround to resolve this issue?