How can I fix the menu cut-off issue in my mobile layout?

Solved

How can I fix the menu cut-off issue in my mobile layout?

Hippada
Tourist
7 0 0

My mobile layout drop down menu has too much padding and the account & language selection tab aren’t visible (see picture). I reduced the width but can’t find a solution for length. Greatly appreciate some help.

IMG_2123.png

Accepted Solution (1)

Dan-From-Ryviu
Shopify Partner
11376 2231 2404

This is an accepted solution.

Hi @Hippada 

Please add this code below to theme.liquid file, after <head> element in Online Store > Themes > Edit code 

<style>
@media (max-width: 749px) {
.js .menu-drawer { height: calc(var(--viewport-height, 100vh) - 110px) !important; }
}
</style>

Best Regards,

Dan

 

- Found this helpful? Hit "Like" and "Accept as Solution"! Support me: Donate!
- Reton: Loyalty & Rewards - Earn points through tasks, redeem for discounts, and enjoy exclusive VIP rewards!
- Ryviu - Reviews & QA app: Collect product reviews, import reviews from AliExpress, Amazon, Etsy, Walmart, Shopee, Dhgate and CSV.
- Lookfy Gallery: Lookbook Image - Gain customers with photo gallery, video & shoppable image
Built for Shopify

Reelfy‑Shoppable Videos+Reels: Create shoppable videos to engage customers and drive more sales.
- En...
Sign up now.

View solution in original post

Replies 2 (2)

Dan-From-Ryviu
Shopify Partner
11376 2231 2404

This is an accepted solution.

Hi @Hippada 

Please add this code below to theme.liquid file, after <head> element in Online Store > Themes > Edit code 

<style>
@media (max-width: 749px) {
.js .menu-drawer { height: calc(var(--viewport-height, 100vh) - 110px) !important; }
}
</style>

Best Regards,

Dan

 

- Found this helpful? Hit "Like" and "Accept as Solution"! Support me: Donate!
- Reton: Loyalty & Rewards - Earn points through tasks, redeem for discounts, and enjoy exclusive VIP rewards!
- Ryviu - Reviews & QA app: Collect product reviews, import reviews from AliExpress, Amazon, Etsy, Walmart, Shopee, Dhgate and CSV.
- Lookfy Gallery: Lookbook Image - Gain customers with photo gallery, video & shoppable image
Built for Shopify

Reelfy‑Shoppable Videos+Reels: Create shoppable videos to engage customers and drive more sales.
- En...
Sign up now.

Hippada
Tourist
7 0 0

Dan, 

 

Thank you very much and it was a perfect fix! Appreciated the simple explanation as well!