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;
    }