I have almost finished launching my webshop. But I have two questions:
1. How do I add shadow under my head menu for more depth?
2. How do I give the submenus a white background color? Right now it is grey.
I’ve tried a lot of CSS but all of them didn’t work.
]]>1.
.storefront-primary-navigation {
box-shadow: 0px 6px 6px 0px #bbb;
}
2.
.main-navigation ul.menu ul.sub-menu, .main-navigation ul.nav-menu ul.children {
background-color: white;
}
Add both of them to CSS file in below that media query:
@media screen and (min-width: 768px)
An example of the shadow i want under my menu header: https://www.zalando.nl/
Zalando has a grey shadow under the menu. This site is just an example.