The mobile menu is hidden for some reason on my website

I cannot figure out why the mobile menu is hidden and not visible yet I am able to click on it as if it is there. Can someone help me figure out why the menu is not visible in mobile view?

I circled below in red where they menu is hidden but clickable. My website is www.icomfortpets.com

1 Like

@Rsaba16

Please add the following code at the bottom of your assets/theme.css file.

@media screen and (max-width: 640px) {
.header .icon--hamburger-mobile {
    width: 20px;
    height: 16px;
    color: #000 !important;
}

.icon-state[aria-expanded=true] .icon-state__secondary {
    opacity: 1;
    transform: translateY(-50%) scale(1);
    color: #000 !important;
}
}

Thanks!

1 Like

Great your code worked! Thanks!

1 Like

@Rsaba16

Thanks!

1 Like