Our mobile site was having some display issues on non-Chromium mobile browsers where the home page would display the full height of the page, regardless of the users screen width.
I was able to resolve that issue by adding ‘initial-scale=1’ to the line on our theme.liquid sheet.
Now the only problem that remains is that we have our desktop nav always displaying on the home page when loaded in those same browsers:
Hi @DBAdam
Try adding below code to end of theme.css file
@media screen and (max-width:1023px){
nav.site-navigation {
display: none;
}
}
If you require further help, please don’t hesitate to reach out.
If this information was helpful to you, please give it a Like. If it resolved your issue, kindly hit Like and mark it as the Solution! Thank you!
When I check out the page source I can manage to turn off that block by clicking the checkmark next to the highlighted text, but I can’t find any way to overwrite that !important tag in my theme code.