I need to position the image with the text "top Score" outside of the main div #wrapper
<div id="wrapper">
<div class = "col1-content">
<div class="ribbon left">
<h2>My top Score</h2>
</div>
</div> <!-- col1-content -->
</div>
#wrapper .col1-content .ribbon{
position: absolute;
width:330px;
height: 89px;
z-index: 10;
}
#wrapper .col1-content .left{
background:url(../images/ribbon_left.png) no-repeat 0 0;
left: -35px;
}
#wrapper .para h2{
font-family:"Lucida Console", Monaco, monospace;
font-size:24px;
font-weight:lighter;
padding-left: 30px;
}