Please view my website here: http://www.budgie.richardcmpage.com/
The div style for one of my boxes (the bottom blue one) is not adjusting it's height automatically. As you can see the post is longer than one line so I want it to auto adjust to the amount. I have the wrapping/break function sorted out as you can see, I just need to the background behind it as you can see now it's not working!
#article_box_outer {
width: 800px;
position: relative;
height: auto;
border: 1px solid #337aa4;
background: #42592c;
margin-left:auto;
margin-right:auto;
margin-bottom:40px;
margin-top:10px;
}
#article_box_inner{
width: 400px;
height: 20px;
position: absolute;
border-left: 1px solid #337aa4;
border-bottom: 1px solid #337aa4;
border-right: 1px solid #337aa4;
background: #42592c;
top: 50px;
right: 30px;
}


