
I've gone back and taken a hard look at my CSS code and tried to clean it up, getting rid of any legacy issues from the sheet I was using for my template. Now there are two things I'd like to do, but how to do them completely escapes me. The first change is pretty extensive. The second should be easy, but I haven't had any luck doing it. Right now, for whatever reason, the outer margins of my sheet are created by the "sheet-3colrow" class. Every section begins with the following HTML: <div class='sheet-3colrow'> </div> Now, from what I've learned since I started this project, this is dumb. And I have no idea why it works. But it does. If I take it out, I loose my margin. But everything after it works and formats just fine. But, as I understand it, all my section content should be INSIDE this DIV, like this, right? <div class='sheet-3colrow'> <div style="width:90px" align="left"> <h4 style="line-height:28px">Name:</h4> <h4 style="line-height:28px">Nationality:</h4> <h4 style="line-height:28px">Gender:</h4> <h4 style="line-height:28px">Religion:</h4> </div> </div> If so, then what I'd like to do is create a page border as a separate entity. How does one do that? Is it even necessary? Should I just leave well enough alone?