Below is the screenie circled with unnecessary lines.
Following is the code.
Yes ofcourse I will give + rep to person help me resolve it.

Code:
[COLOR=Wheat]#gadget{
clear:both;
}
.gadget-one{
width: 251px;
float: left;
padding:15px 12px 0 32px;
overflow:hidden;
}
.gad-top{
height:11px;
width:251px;
display:block;
overflow:hidden;
background:url(images/gad_top.gif) no-repeat 0 0;
}
.gad-mid{
display:block;
height:1%;
overflow:hidden;
background:url(images/gad_mid.gif) repeat-y 0 0;
}
.gad-mid h2{
color:#000;
text-align:center;
font-size:12px;
font-weight:bold;
clear:both;
}
.gad-mid li{
list-style:none;
display:block;
}
.gad-mid li a{
color:#999;
text-decoration:none;
height:25px;
display:block;
padding:8px 15px 0 5px; /*top = 8px, right = 10px, bottom = 5px, left = 10px. */
overflow:hidden;
border-bottom:1px solid #000;
}
.gad-mid li a:hover{
background:#3f3f3f;
color:#EEE;
}
.gad-bottom{
height:11px;
width:251px;
display:block;
overflow:hidden;
background:url(images/gad_bottom.gif) no-repeat 0 0;
}[/COLOR]
Following is the code.
PHP:
<div id="gadget">
<div class="gadget-one">
<div class="gad-top"></div>
<div class="gad-mid">
<h2 class="recent-post-til">Recent Posts</h2>
<ul>
<?php get_archives('postbypost', 3); ?>
</ul>
</div>
<div class="gad-bottom"></div>
</div>
</div>
Yes ofcourse I will give + rep to person help me resolve it.