Important:
This support area is for Kalium 3 users only.
Support for Kalium 4 has moved to our new platform at support.laborator.co.
If you’re using Kalium 4, please create a new account there using your email and license key. A password will be sent to you automatically.
Hi there
How can I change the yellow background colour on the mobile hamburger menu?
Please see attached image.
Thank you.
Hi,
Please add the code below to your Custom CSS area:
@media screen and (max-width: 768px) { .mobile-menu-wrapper.mobile-menu-fullscreen+.mobile-menu-overlay { background-color: rgb(223 56 56 / 95%); } }If the code doesn't work, then use the !important rule. So like this:
@media screen and (max-width: 768px) { .mobile-menu-wrapper.mobile-menu-fullscreen+.mobile-menu-overlay { background-color: rgb(223 56 56 / 95%) !important; } }Have a nice day!