I have a problem in my theme in Shopify, I installed an app called “Hello Bar” to display offers on all my pages. For some reason the app is not compatible with my theme, I talked with the developers of the app and they told me to add this to my CSS file in my theme:
@media screen and (min-width: 1025px){
.page-wrapper{
position: static;
}
}
That fixes the issue on the desktop but on mobile version my navigation menu is collapse and I can not close it. I added this to fix the issue:
@media screen and (max-width: 1024px){
.nav-mobile{
display: none;
}
but then when I click the button of the menu, the menu is blank.
Please can someone help me, is there a trick that can fix this issue?
2
Answers
I added this script and it didn't work
Setting
display: none;
hides the element you apply it to. That is why the menu is blank.