I've been working on a website where I want the main container to have a light brown shadow on both the right and left sides. However, I've managed to add shadows on both sides but they are too dark for my liking. I'd prefer them to be much lighter, similar to the shadows on Bloomingdales.com.
Below is the CSS code I'm using. Any suggestions on how to achieve the desired effect would be greatly appreciated!
Thank you!
.container {
overflow: hidden;
background: white;
padding: 15px;
-webkit-box-shadow: 4px 2px #492409, -4px 0 2px #492409;
-moz-box-shadow: 4px 0 2px -6 #492409, -1px 0 2px #492409;
box-shadow: 4px 0 2px #492409, -4px 0 2px #492409;
}