Site logo

Archived topic

Styling hamburger menu

3 replies · Started by Damon on April 6, 2023

Viewing posts 1–4 of 4

Hello there.
I'd like to put a white background behind the menu items when you click the hamburger menu on mobile (no bg on desktop).
Kind regards
Damo

Hi there,

you can add a background color using some CSS:

@media (max-width: 768px) {
    .has-inline-mobile-toggle #site-navigation.toggled {
        background-color: #000;
    }
}

Thank you David.
That's a great help.
Kind regards
Damon

You're welcome

This archived topic is closed to new replies.