You can give the class box to the post ID and your loop HTML should look like this:
<div id="post-XXX" class="box">
<div class="entry-content">
<a href="#"><img class="alignleft size-medium wp-image-51" title="de-oude-bootjesgek" src="https://www.bootjesgek.com/wp-content/uploads/2009/05/de-oude-bootjesgek-240x174.jpg" alt="de-oude-bootjesgek" width="250" height="174" /></a>
<h3 class="entry-title">
<a href="#" rel="bookmark" title="Permanent Link to...">The Post Title</a>
</h3>
<p>
Your content here - Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin hendrerit commodo scelerisque. Aenean eu turpis lectus. Donec libero dolor, tempus et aliquet in, tempor vitae nunc. Vestibulum eleifend porttitor purus sed tincidunt.
</p>
</div><!-- .entry-content -->
<div class="entry-meta">
Published by <a href="#">Admin</a> on 10 Sept 2009 in <a href="#">Category</a>
</div>
<div style="clear:both"></div>
</div><!-- #post-ID -->
Than you can add the following code to your style.css file
img{
border: 0;
text-decoration: none;
}
.box {
margin: 0px 0px 10px 0px;
border: 10px solid #DCDCDC;
font-family: Arial, Helvetica, sans-serif;
font-size: 12px;
color: #222;
line-height: 18px;
}
.box img {
padding: 1px;
background: #222;
margin: 0px 10px 0px 0px;
float: left;
border-right: 10px solid #DCDCDC;
-ms-interpolation-mode: bicubic;
width: 250px !important;
}
.entry-title {
padding: 3px 0px 3px 10px !important;
margin: 0;
border-bottom: 10px solid #DCDCDC;
}
.entry-title a, .entry-title a:visited {
font-size: 18px;
font-weight: normal;
text-decoration: none;
color: #222;
}
.entry-content p {
padding: 5px 10px 5px 0px;
margin: 0;
}
.entry-meta {
border-top: 10px solid #DCDCDC;
padding: 5px 10px 5px 0px;
}
Remove the border from your thumbnail generator and change the with to 250px. Because of this:
-ms-interpolation-mode: bicubic;
Your image will look very nice after re size in internet explorer as well.