the following is my code:
.post-row1
{
width: 610px;
height: 20px;
margin: 0px;
background-image: url(
http://www.hollyscoop.com/new_xxa/MainImages/Post/blue-border-tile.gif);
background-repeat: repeat;
text-align: left;
vertical-align: top;
position: relative;
}
.post-row2
{
width: 610px;
margin: 0px;
background-image: url(
http://www.hollyscoop.com/new_xxa/MainImages/Post/blue-gray-row2.gif);
background-repeat: repeat-y;
text-align: left;
vertical-align: top;
position: relative;
}
.post-body
{
width: 610px;
margin: 0px;
background-image: url(
http://www.hollyscoop.com/new_xxa/MainImages/Post/white-gray-body-bg.gif);
background-repeat: repeat-y;
text-align: left;
vertical-align: top;
position: relative;
}
.post-right-stripe
{
top: 0px;
right: 0px;
width: 22px;
height: 466px;
margin: 0px;
background-image: url(
http://www.hollyscoop.com/new_xxa/MainImages/Post/blue-stripe-right.gif)
;
background-repeat: repeat-y;
text-align: left;
vertical-align: top;
position: absolute;
}
.post-bodytext-innerbox
{
top: 0px;
left: 17px;
width: 571px;
margin: 0px;
text-align: left;
vertical-align: top;
position: absolute;
float: left;
}
.post-row1-date
{
top: 1px;
right: 23px;
width: 587px;
height: 15px;
margin: 0px;
text-align: right;
vertical-align: top;
position: absolute;
float: left;
}
.post-row2-headline
{
top: 15px;
left: 33px;
width: 543px;
margin: 0px;
text-align: left;
vertical-align: top;
position: absolute;
float: left;
}
<div>
<h1 ID="PostHeadline" Class="post-headline-font" runat="server" />
<div class="post-row1">
<div class="post-row1-date">
<asp:Label ID="PostDate" runat="server" CssClass="post-date-font" />
</div>
</div>
<-----------------------------------
---------E
VERYTHING AFTER THIS IS NOT SHOWING UP
<div class="post-row2">
<div class="post-row2-headline">
TREST
</div>
</div>
<div class="post-body">
<div class="post-bodytext-innerbox">
asd<br /><br />
</div>
<div class="post-right-stripe"></div>
</div>
</div>
I have marked where nothing shows up afterwards.