I’m hoping there’s an easy way to ad a nice shadow effect around the borders of the website. any help wouud be appreciated.
Thansnks!
– JOHN
It’s not possible to add a shadow to the box if you’re using a background image. The problem is the html structure which does not allow you to add the shadow to the box itself but you must apply it to the body element. If you don’t need a background image you can use following code:
.responsive .boxed#top{
-moz-box-shadow: 0 0 15px #111;
-webkit-box-shadow: 0 0 15px #111;
box-shadow: 0 0 15px #111;
}