Okay
  Public Ticket #3387423
Mobile Menu background color
Closed

Comments

  •  1
    Zoltan started the conversation

    Hi there

    How can I change the yellow background colour on the mobile hamburger menu? 

    Please see attached image. 

    Thank you.

    Attached files:  IMG_CBF0CD791175-1.jpeg

  • [deleted] replied

    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!