I've done a good attempt on my own here. Here's what I've tried so far, and hopefully my server will update the display soon enough so you can see how it's not quite there yet. It's still not set right.
Code:
#leftside{
overflow:auto;
float:left;
height:700px;
width:300px;
}
#leftsidestart{
float:right;
background:url("sidewindowstartleft.gif") no-repeat scroll 50% 0 transparent;
height:300px;
width:25px;
}
#leftsidebody{
margin:0 auto;
background:url("sidewindowbody.gif") repeat-x scroll 50% 0 transparent;
height:300px;
}
#leftsideend{
float:left;
background:url("sidewindowendleft.gif") no-repeat scroll 50% 0 transparent;
height:300px;
width:18px;
}
Code:
<div id="leftside">
<div id="leftsidestart"> </div>
<div id="leftsidebody">
<h2 class="sideWindowHeaderText">Most Popular</h2>
<ul class="sideWindowLinks">
<li><a href="http://www.atlantareviewgroup.com/food/peapod1.html">Peapod</a></li>
<li><a href="http://www.atlantareviewgroup.com/health/dieting/southbeach1.html">South Beach Diet</a></li>
<li><a href="http://www.atlantareviewgroup.com/coupons/brandcaster1.html">Brandcaster Coupons</a></li>
</ul>
</div><!-- end left box div -->
<div id="leftsideend"> </div>
</div><!-- end leftside div -->
Bookmarks