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.

Okay
  Public Ticket #1339665
Displaying mobile logo with mobile menu expanded
Closed

Comments

  •  3
    tonypantello started the conversation

    Hi - why does the logo disappear when I have the mobile menu expanded? Is there a way to keep the mobile logo I have in place showing instead of hiding it? Thanks.

  • [deleted] replied

    Hi tonypantello,

    That is happening because fullscreen mobile menu is active on your site. And the background of the menu is white.

    If you want you can make the background a little bit transparent with this CSS code:

    .mobile-menu-wrapper .mobile-menu-container {
        background-color: rgba(255, 255, 255, 0.75);
    }
    .mobile-menu-open .mobile-menu-wrapper.mobile-menu-fullscreen {
        background-color: rgba(255, 255, 255, 0.75) !important;
    }