Thanks to the 3 ppl who downloaded this, I lucked out winging it, here’s what I did
The default setup in the style sheet looked like this
.block.right {width:312px;}
.block.right .top { background:url(images/block_right_top.gif); height:6px;}
.block.right .content { background:url(images/block_right_bg.gif); padding:3px 17px;}
.block.right .bottom { background:url(images/block_right_bottom.gif); height:10px;}
So what I did is copy and paste it and make a duplicate with a different name
.block.rightt {width:312px;}
.block.rightt .top { background:url(images/block_right_top.gif); height:0px;}
.block.rightt .content { background:url(images/block_right_bg.gif); padding:0px 6px;}
.block.rightt .bottom { background:url(images/block_right_bottom.gif); height:0px;}
in the style sheet, notice the two t’s in rightt. In sidebar.php for that particular section i changed it to pull <div class=”block rightt”> instead and then adjusted the padding attributes until it fit exactly. Hopefully that makes sense.
I totally winged it I’ve never made a site before…
Peace