Shopify themes, liquid, logos, and UX
We're moving the community! Starting July 7, the current community will be read-only for approx. 2 weeks. You can browse content, but posting will be temporarily unavailable. Learn more
I am using the latest version of the Dawn theme. In the mobile view, when the hamburger menu is clicked, a transparent space appears. How can I hide the transparent space and make the menu open in full-screen mode?
website: https://mannavan.myshopify.com/
password : offnorth
Thanks in advance.
Solved! Go to the solution
This is an accepted solution.
Hi @Sivadarshan
@media screen and (max-width: 768px){
div#menu-drawer {
height: 100vh !important;
top: 0 !important;
}
details.menu-drawer-container > summary.header__icon.header__icon--menu.header__icon--summary.link.focus-inset {
z-index: 99 !important;
}
details.menu-drawer-container > summary.header__icon.header__icon--menu.header__icon--summary.link.focus-inset::before {
display: none !important;
}
details.menu-drawer-container > summary.header__icon.header__icon--menu.header__icon--summary.link.focus-inset * {
color: black !important;
}
}
This is an accepted solution.
Hi @Sivadarshan
@media screen and (max-width: 768px){
div#menu-drawer {
height: 100vh !important;
top: 0 !important;
}
details.menu-drawer-container > summary.header__icon.header__icon--menu.header__icon--summary.link.focus-inset {
z-index: 99 !important;
}
details.menu-drawer-container > summary.header__icon.header__icon--menu.header__icon--summary.link.focus-inset::before {
display: none !important;
}
details.menu-drawer-container > summary.header__icon.header__icon--menu.header__icon--summary.link.focus-inset * {
color: black !important;
}
}