I want to add a shadow effect on the bottom and right sides of a specific div.
#navigation-and-slideshow {
overflow: hidden;
background-color: #fff;
padding: 10px 1%;
box-shadow: 2px 2px 5px #222;
}
However, I am only seeing the shadow effect at the bottom in all browsers I've tested. Can someone assist me in resolving this issue?
Thank you