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
Hello everyone,
So, I always hated the drawer menu animation in Dawn theme and I've tried so many codes and none of them worked.
The only thing I know how to do is to remove the animation but not modifying it.
I want it to have a fade-in and out animation.
Can somebody help me out with this?
Thanks.
Also, there is something going wrong with the icon of the drawer menu.
I would appreciated if somebody can fix it!
Solved! Go to the solution
This is an accepted solution.
Hi @StudioBlank
Plesae add this code to your theme.liquid file, after <head> in Online Store > Themes > Edit code
<style>
.menu-drawer {
transform: unset !important;
opacity: 0;
}
.js details[open]>.menu-drawer, .js details[open]>.menu-drawer__submenu {
transition: opacity .5s linear !important;
opacity: 1;
}
}
</style>
- Helpful? Like & Accept solution!
- Ryviu - Product Reviews & QA app: Collect customer reviews, import reviews from AliExpress, Amazon, Etsy, Walmart, Dhgate and CSV.
- Lookfy Gallery: Lookbook Image - Gain customers with photo gallery, video & shoppable image.
- Reelfy‑Shoppable Videos+Reels: Create shoppable videos to engage customers and drive more sales.
- Enjoy 1 month of Shopify for $1. Sign up now.
Hi, @StudioBlank
I can help you with it. So I need to access your store as a collaborator if possible.
This is an accepted solution.
Hi @StudioBlank
Plesae add this code to your theme.liquid file, after <head> in Online Store > Themes > Edit code
<style>
.menu-drawer {
transform: unset !important;
opacity: 0;
}
.js details[open]>.menu-drawer, .js details[open]>.menu-drawer__submenu {
transition: opacity .5s linear !important;
opacity: 1;
}
}
</style>
- Helpful? Like & Accept solution!
- Ryviu - Product Reviews & QA app: Collect customer reviews, import reviews from AliExpress, Amazon, Etsy, Walmart, Dhgate and CSV.
- Lookfy Gallery: Lookbook Image - Gain customers with photo gallery, video & shoppable image.
- Reelfy‑Shoppable Videos+Reels: Create shoppable videos to engage customers and drive more sales.
- Enjoy 1 month of Shopify for $1. Sign up now.
Nice, this actually works!!
Its weird why the animation works after the second try.
But overall, its working very well.
Thank you!