I took a look at your source code, omg does dreamweaver make some ugly css! And the meta tag in the header technically doesn't follow xhtml standards. Here, let me help you with that.
Lots of absolute positioning, setting z-index, and referencing gif images I don't even see in the design, it's all unnecessary junk making very unmanagable code. It's pretty bad when looking at the source I can't even figure out where the background image was set.
Your index.htm and home.css files made a total of 22.3KB. I rewrote your index page (embedded the CSS in the header) and the total size was only 4.6KB. The new page looks identical to yours but uses 1/5 the code. I'm not saying anything bad about you, afterall you did say you used an editor. I'm just pointing out how inefficient wysiwyg editors can be.
<!DOCTYPE HTML PUBLIC "-//W3C//DTD XHTML 1.1/EN">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"/>
<title>Index | Elusive-Design.co.uk</title>
<link rel="icon" type="image/jpeg" href="images/fav.jpg"/>
<link href="style.css" rel="stylesheet" type="text/css" />
<style type="text/css">
body{background:gray;font:12px Arial;}
.news{color:red;}
#pageWrapper{width:760px;background:#181818;color:white;}
#topContainer{width:100%;height:164px;}
#topContainer .left{float:left;}
#topContainer .right{float:right;}
#updates{width:228px;height:166px;margin-left:5px;background:#060724;float:left;text-align:left;padding:6px;}
#updates h3{margin-top:0;color:#CFCFCF;}
#updates span{color:#0076D0;font-weight:bold;}
#updates a{text-decoration:underline;color:white;}
#navbar{width:515px;height:39px;}
#navbar ul{display:inline-block;margin:0;padding:0;text-align:center;}
#navbar ul li{display:block;height:37px;padding:1px;float:left;}
img{border:0;}
#welcomeContainer{text-align:left;width:505px;padding:5px;}
#bodyContainer{background:black;width:750px;text-align:left;clear:both;}
#bodyContainer h3{color:#0076D0;margin:0;padding:8px 2px 4px 2px;}
#footer{text-align:left;font-weight:bold;padding:10px 5px 2px 5px;}
/* IE fixes */
*html #updates{width:227px;margin-left:3px;}
#logo{padding-bottom:20px;}
</style>
</head>
<body>
<center>
<div id="pageWrapper">
<marquee width="100%" scrollamount="2" scrolldelay="42">
<p><b>Latest News:</b> <span class="news">DUE TO THE WEBSITE BEING UNDER CONSTRUCTION SOME AREAS MAY NOT WORK</span></p>
</marquee>
<img id="logo" src="images/elusivedesignlogo.png" width="700" height="89" alt="Elusive Design"/>
<div id="topContainer">
<div class="left">
<div id="updates">
<h3>Service Updates</h3>
<p><span>Web Design - </span>
I am currently offering a cheap Web Design service.
<br/><a href="">For details click here</a>
</p>
<p><span>Logo Design - </span>
Logo Design is my 'specialist' skill, because of this I am offering very
cheap Logo Design.
<br/><a href="">For details click here</a>
</p>
</div>
</div> <!-- End topContainer left -->
<div class="right">
<div id="navbar">
<ul>
<li><a href=""><img width="101" height="37" src="images/homeicon.jpg"/></a></li>
<li><a href=""><img width="101" height="37" src="images/mediaicon.jpg"/></a></li>
<li><a href=""><img width="101" height="37" src="images/portfolioicon.jpg"/></a></li>
<li><a href=""><img width="101" height="37" src="images/abouticon.jpg"/></a></li>
<li><a href=""><img width="101" height="37" src="images/contacticon.jpg"/></a></li>
</ul>
</div>
<div id="welcomeContainer">
<h1>Welcome</h1>
I am Shaun Read. I am a graphic designer based in Newcastle, United Kingdom. For a number
of years i have learned skills such as 2D Design, Web Design, 3D Design and many other skills.
Thanks to this i have had much success in all areas. If you would like to see any of my
Websites or Graphic Design Work please click here!
</div>
</div> <!-- End topContainer right -->
</div> <!-- End topContainer -->
<div id="bodyContainer">
<h3>Latest 2D Work</h3>
<img src="images/tgcffp1s.jpg" width="165px" height="239px"/>
<img src="images/wopost1s.jpg" width="165px" height="239px"/>
<img src="images/ftpost4s.jpg" width="165px" height="239px"/>
<img src="images/ftpost3s.jpg" width="165px" height="239px"/>
<a href=""><img src="images/morelg.jpg" width="50px" height="239px"/></a>
<br/><br/>
<h3>Latest Logo Work</h3>
<img src="images/tlras.jpg" width="165px" height="90px"/>
<img src="images/tlra2s.jpg" width="165px" height="90px"/>
<img src="images/eds.jpg" width="165px" height="90px"/>
<img src="images/cds.jpg" width="165px" height="90px"/>
<a href=""><img src="images/moresm.jpg" width="50px" height="90px"/></a>
<br/><br/>
<h3>Latest Web Work</h3>
<img src="images/web4.jpg" width="218px" height="164px"/>
<img src="images/web3.jpg" width="218px" height="164px"/>
<img src="images/web2.jpg" width="218px" height="164px"/>
<a href=""><img src="images/moremg.jpg" width="50px" height="164px"/></a>
</div> <!-- End bodyContainer -->
<div id="footer">
Copyright 2010 Elusive-Design.co.uk All rights Reserved. | Privacy Policy | Contact
</div> <!-- End footer -->
</div> <!-- End pageWrapper -->
</center>
<body>
</html>

"Any sufficiently advanced technology is indistinguishable from magic" ~ Arthur C. Clarke