Hi,
You can just float the images to the left similar to a 2 column layout.
e.g.
Code:
<div class="section clearfix">
<div class="side-img">
<p><img src="http://www.tutorial-zone.co.uk/dev/images/photoshop.gif" alt="" /></p>
<p>Report</p>
</div>
<dl>
<dt><a href="viewtutorial.php?tid=2&PHPSESSID=2fc24022c1f3f9ac704d357c9deb116e" class="listings">Making A Bubble In Photoshop</a></dt>
<dd>this is just a test description to make sure the sites code is working how it should.</dd>
</dl>
<ul>
<li class="no-pad"><strong>Category</strong> : Photoshop</li>
<li><strong>Rating</strong> : <img src="http://www.tutorial-zone.co.uk/dev/images/00star.gif" alt="" /></li>
<li><strong>Views</strong> : 2 </li>
<li class="no-border"><a href="report.php?tid=2&PHPSESSID=2fc24022c1f3f9ac704d357c9deb116e" class="aff">Report</a></li>
</ul>
</div>
<div class="section clearfix">
<div class="side-img">
<p><img src="http://www.tutorial-zone.co.uk/dev/images/photoshop.gif" alt="" /></p>
<p>Report</p>
</div>
<dl>
<dt><a href="viewtutorial.php?tid=2&PHPSESSID=2fc24022c1f3f9ac704d357c9deb116e" class="listings">Making A Bubble In Photoshop</a></dt>
<dd>this is just a test description to make sure the sites code is working how it should.</dd>
</dl>
<ul>
<li class="no-pad"><strong>Category</strong> : Photoshop</li>
<li><strong>Rating</strong> : <img src="http://www.tutorial-zone.co.uk/dev/images/00star.gif" alt="" /></li>
<li><strong>Views</strong> : 2 </li>
<li class="no-border"><a href="report.php?tid=2&PHPSESSID=2fc24022c1f3f9ac704d357c9deb116e" class="aff">Report</a></li>
</ul>
</div>
<div class="section clearfix">
<div class="side-img">
<p><img src="http://www.tutorial-zone.co.uk/dev/images/photoshop.gif" alt="" /></p>
<p>Report</p>
</div>
<dl>
<dt><a href="viewtutorial.php?tid=2&PHPSESSID=2fc24022c1f3f9ac704d357c9deb116e" class="listings">Making A Bubble In Photoshop</a></dt>
<dd>this is just a test description to make sure the sites code is working how it should.</dd>
</dl>
<ul>
<li class="no-pad"><strong>Category</strong> : Photoshop</li>
<li><strong>Rating</strong> : <img src="http://www.tutorial-zone.co.uk/dev/images/00star.gif" alt="" /></li>
<li><strong>Views</strong> : 2 </li>
<li class="no-border"><a href="report.php?tid=2&PHPSESSID=2fc24022c1f3f9ac704d357c9deb116e" class="aff">Report</a></li>
</ul>
</div>
Code:
#content {
float:left;
}
.clearfix:after {
content:".";
display:block;
height:0;
clear:both;
visibility:hidden;
}
.clearfix {
display:inline-block;
}
/* mac hide \*/
* html .clearfix {height: 1%;}
.clearfix {display: block;}
/* End hide */
.section{clear:both;margin:10px 0}
.section ul{
list-style:none;
margin:0;padding:0;
line-height:.9;
}
.section ul li{
border-right:1px solid #000;
padding:0 10px ;
}
.section ul li.no-pad{padding-left:0}
.section ul li.no-border{border-right:none;padding-right:0}
.side-img{
float:left;
width:60px;
}
.side-img p{
border:1px solid blue;
padding:5px 0;
text-align:center;
}
.section dl {margin:0 0 0 65px;padding:0}
.section ul {margin:0 0 5px 65px;padding:0}
.section dt {margin:0 0 5px 0}
.section dd {margin:0;padding:0}
.section ul li{display:inline;}
.section dt a{
font-size: 1.2em;
color:#105cb6;
font-weight:bold;
}
It will need tweaking into position etc but should give you the general idea. 
The code you were using in the page is invalid and you cannot wrap block level elements such an h1 inside inline elements like anchors.
In fact you should really only have one h1 per page as a page can really only have one main heading. You would probably get penalised for search engines if you use more than 2 or 3 h1 headings at the most as they will consider it spam.
Minor headings should go in logical order so those headings would be at least h3 headings anyway. However there are better more semantic html elements to use such as dl lists which describe the content much better which is why I have used them above
Bookmarks