Menu button opening a empty page on mobile

Solved

Menu button opening a empty page on mobile

BrunoJarvik
Tourist
4 1 0

When you go to ecoperiod.pl on mobile and click on the menu button a empty slider opens. 

I imported this theme and the issue was already there. 

 

Can anyone help please?

 

Screenshot 2024-06-18 at 19.26.34.png

Accepted Solution (1)

BrunoJarvik
Tourist
4 1 0

This is an accepted solution.

Found the solution:

 

theme.liquid > find </body> at the bottom of the code > put this code above </body> : 

 

<style>
@media screen and (max-width: 767px) {
div#menu-drawer {
height: 100vh!important;
}
.menu-open div#menu-drawer {
transform: translate(0%)!important;
visibility: visible!important;
}
}
</style>

View solution in original post

Reply 1 (1)

BrunoJarvik
Tourist
4 1 0

This is an accepted solution.

Found the solution:

 

theme.liquid > find </body> at the bottom of the code > put this code above </body> : 

 

<style>
@media screen and (max-width: 767px) {
div#menu-drawer {
height: 100vh!important;
}
.menu-open div#menu-drawer {
transform: translate(0%)!important;
visibility: visible!important;
}
}
</style>