If you're looking at this page then you're obviously either just curious OR you are confused on how to layout a page using a side bordered background.

If you're looking for help, take a deep breath and relax, cause this is the right place. Below you'll find the base table code to set up your page using any of the bordered backgrounds.
All you have to do is copy/paste it into your page, AFTER the BODY tag and add your content.

<table align="right" border="1" cellspacing="0" cellpadding="10" width="85%">
<tr>
<td> Place your content here </td>
</tr>
</table>

If tables scare you, relax! There is also a way to set up your pages using CSS (Cascading Style Sheets)! It's faster actually. If this is your preferance, here is the basic set-up to use them. This code goes in the HEAD part of your page. Change the italicized values to your own.

<style type="text/css">
<!--
body {
margin-left: 15%;
background-image: url(background name);
background-attachment: fixed;
font-family: name of font;
color: color you want text;
}
-->
</style>