Why isn't my online store's menu opening on mobile devices?

Hey there! I have an issue with the online store that I recently built. The entire menu isn’t working on mobile devices. After clicking on the menu icon at the upper center- nothing opens. I spent months trying to fix that myself, but unfortunately, nothing worked, and I don’t know who to ask to help! I’ve tried reading the articles on this topic but I don’t understand how to implement the fix!

I would be so grateful for any help! :heart:

My online store link is: https://livetogiveshop.com/

Thanks!

Hey @ak330630 ,

Go to your theme’s “Edit Code” Option, then in the search bar type “theme.liquid”
Below the tag “” tag paste the following. Screenshot attached for reference.


Screenshot is for reference only, the correct code to paste is the one shown above.

Add this css in your base.css File

.drawer.is-active {
    visibility: visible !important;
}
.drawer__header{
   padding: 1.5rem 15px !important;
}