Is there a way to extend the border all the way off the edges on the bottom and top but still be restricted by the width?
Since Shrike hasn't been around for a while, guess I'll help you out. What I do, is make a new div and put it right above the <head> tag. Like this:
<div style="background-image:url('http://i657.photobucket.com/albums/uu300/EliteList/Bkgrns/Plaids/th_14.png');background-repeat:repeat; background-attachment: fixed; position:relative; margin:auto; margin-bottom:-20px; width:80%;">
<head>
and then the closing tag </div> would go right after the closing body tag like so:
</body>
</div>
You could of course add an id to that divide above and move the css style to your style sheet:
<div id="new_wrapper">
And the css in your style sheet:
#new_wrapper{
background-image:url('http://i657.photobucket.com/albums/uu300/EliteList/Bkgrns/Plaids/th_14.png');
background-repeat:repeat;
background-attachment: fixed;
position:relative;
margin:auto;
margin-bottom:-20px;
width:80%;
}
That's how I'd do it. Just keep in mind if you are using percentages, what you have set in your visual editor in the width slot will be a percentage of the 80% or whatever you put in the new div. If you are using pixels the pixel in the new div needs to be larger than the pixels you have set in the visual editor. Hope that makes sense.