Im using a customized theme that I now cannot get a hold of the owner, My menu doesnt work on mobile, when i try to use the dropdown it doesnt show up, help me asap
Hi @Myron2k3
I think it’s might be due to a JavaScript or CSS issue. Let’s check if there are any console errors in your browser’s developer tools (press F12 > Console tab).
If the dropdown uses JavaScript, it could be broken due to a missing or outdated script. Also, inspect your CSS to see if the dropdown is set to display: none or has visibility: hidden.
You can try adding this in your theme’s custom CSS:
.mobile-menu { display: block !important; visibility: visible !important; }