If you want to add a drop shadow to a standard Slick Menu hamburger menu button, you can do so with the following CSS:
.sm-hamburger:not(:hover) .sm-hamburger-box div,
.sm-hamburger:not(:hover) .sm-hamburger-box div:before,
.sm-hamburger:not(:hover) .sm-hamburger-box div:after {
-webkit-box-shadow: 0px 0px 8px 1px rgba(0,0,0,0.5);
-moz-box-shadow: 0px 0px 8px 1px rgba(0,0,0,0.5);
box-shadow: 0px 0px 8px 1px rgba(0,0,0,0.5);
}
0 Comments