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