How do i change the background color of a nav dropdowns sub-dropdown

How do i change the background color of a nav dropdowns, sub-dropdown.

Using minimal theme.

Site is ziggystitches.com access code is weamea

with a bit of CSS magic

you will need to update your theme.css to add the following:

to change the entire nav background, something like this

.site-nav {
    background: aliceblue;
}

to only change the background of the menu drop downs

.site-nav__dropdown {
    background: aquamarine;
}

Thanks so much!

I meant more-so the secondary one not the initial dropdown, like if you hover over shop then hover over canvases, that secondary dropdown is transparent right now wanted to make it a solid white if possible

Ah, so something like this?

the css magic for that is

.site-nav__dropdown-grandchild {
    background: brown;
}

PS: replace brown with #FFFFFF (I wanted to keep brown for clarity)

Thanks so much!!!