I tried my hand at it using JSFiddle, here is what I came up with. Feel free to modify it according to your needs.
Check out the DEMO HERE
HTML:
<div class="con">
<div class="left">
<div class="box">Text Text Text Text</div> <span class="underbox">3 Days ago</span>
<div class="box">Text Text Text Text</div> <span class="underbox">3 Days ago</span>
</div>
<div class="right">
<div class="textwall">
<div class="image">Image here</div>Text Text Text Text Text Text Text Text Text Text Text Text Text Text Text Text Text Text Text Text Text Text Text Text Text Text Text Text Text</div>
</div>
</div>
CSS:
.con {
width: 500px;
height: 200px;
border: #000000 solid 1px;
}
.left {
float: left;
width: 50%;
height: 100%;
border: #000000 solid 1px;
}
.right {
float: right;
width: 49%;
height: 100%;
border: #000000 solid 1px;
}
.box {
width: 90%;
height: 20%;
border: #000000 solid 1px;
margin: 0 auto;
margin-top: 5px;
}
.underbox {
margin-left: 15px;
margin-bottom: 10px;
}
.textwall {
margin: 10px;
}
.image {
float: left;
width: 70px;
height: 70px;
background: red;
margin: 5px;
}