In the mobile view of the krystal theme, the mobile menu is not working. It spins and won’t display. The user using a mobile device is stuck on the homepage.
Please advise.
B
Beth
Original poster
Member
In the mobile view of the krystal theme, the mobile menu is not working. It spins and won’t display. The user using a mobile device is stuck on the homepage.
Please advise.
Hi Beth,
I’m not sure why your toggle button is showing up on the left. It could be due to some changes in the code or perhaps a plugin that’s affecting the layout. For now, you can try using this CSS as a temporary solution.
@media only screen and (max-width: 767px) {
header.style-1 #krystal-main-menu-wrapper .navbar-toggle,
header.style-2 #krystal-main-menu-wrapper .navbar-toggle {
left: 140px !important;
}
header.style-1 #krystal-main-menu-wrapper .navbar-toggle.collapsed,
header.style-2 #krystal-main-menu-wrapper .navbar-toggle.collapsed {
left: 230px !important;
}
#krystal-main-menu-wrapper .collapse.in {
display: block !important;
width: 162% !important;
}
}
Copy & Paste it into Appearance -> Customize -> Additional CSS
Best Regards