Is the template a free one if it is just tell me where you got it from and I'll download it.
I can alter the CSS but wont be able to tell what it does without the correct CSS and HTML and corresponding images.
If you want to actually add a shadow you'll need a image editor.
CSS3 Supports shadows but is not supported in all browsers 
http://www.w3schools.com/cssref/tryi...ss3_box-shadow
Code:
div
{
box-shadow: 10px 10px 5px #888888;
}
Your code:
Code:
body {
background: #eeeeee url('../images/backgrounds/linen.png') repeat top left;
font-family: "Helvetica Neue", helvetica, sans-serif;
font-size: 14px;
border-top-style: none;
border-right-style: none;
border-bottom-style: none;
border-left-style: none;
}
div#container_wrap {
width: 980px;
margin: 0 auto;
position: relative;
visibility: visible;
box-shadow: 10px 10px 5px #888888;
}
This may get the shadow around the area you want I'm still unsure what you actually want. As i'm trying to imagine what your website looks like.
Bookmarks