I like the second one best. Try changing the body style to this in the style sheet:
Code:
body {
background:#C6E3B5 url(images/leftborder.gif) repeat-y left top;
}
What you call a class:

Originally Posted by
coolpillows
Code:
#innerbody{
background:#C6E3B5;
font-color: #CCCCCC;
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 75%;
margin-left: -15px;
margin-top: -17px;
padding-left: 30px;
padding-top: 30px;
}
is actually an id. Whatever, as long as you use it as:
<div id="innerbody">
as I see you have, it will work. This would make it a true 'class':
Code:
.innerbody{
background:#C6E3B5;
font-color: #CCCCCC;
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 75%;
margin-left: -15px;
margin-top: -17px;
padding-left: 30px;
padding-top: 30px;
}
Then you would use:
<div class="innerbody">
It all looks fairly good to me but, for some known and unknown reasons the second example just grabbed me. The third example has layout problems, I'd abandon it or bring it into line with the other two.
Bookmarks