So you want to display the comments in a box?
Well if so let's try this.
HTML Code
Code:
<!-- Start Entry -->
<div class="entry-wrap">
<div class="entry-info">
<div class="entry-number"><strong>7</strong></div>
<div class="entry-date">Date: <strong>7/24/2006, 5:09 am</strong></div>
<div class="entry-poster">Posted By: <strong>Big Red Spyda</strong></div>
</div>
<div class="entry-meat">
whose dat creepn up the goleywhack tree?
</div>
</div>
<!-- End Entry -->
and here is some CSS for style
Code:
<style type="text/css">
<!--
div.entry-wrap {
background-color: #eee;
width: 300px;
padding: 5px;
border: 1px solid #ccc;
font: 12px verdana, arial, helvetica, "times new roman";
display: block;
clear: both;
margin-bottom: 10px;
}
div.entry-info {
background-color: #ccc;
padding: 5px;
font-size: 90%;
}
div.entry-number {
color: #999;
float: right;
}
div.entry-meat {
padding: 5px;
}
// -->
</style>
Let me know if you have any questions.
Matt