Well, thank you for proving my previous point for me sycomcomp. You clearly can't tell the difference, cos this one is structured with a table, not CSS

hehe i love being right
Anyhoo, I say don't center, but play with the header a bit and get it fluid, I think that would be more appropriate for the look of the site.
Um, the blue is nice and easy on the eyes and completely unoriginal. I think you should be trying to standout from the croud in some way if you want to design professionally. Potential clients have far to many choices, so you have to have something different.
On the about us page, you have browser consistancy issues with the top margin on the body text and you really should put some space on the left of the body text.
Well that was gonna be the end of the review, but I just saw this, and it's not getting past me:
<p><font size="1" color="#000000" class="content"><strong> <font size="1" color="#000000" class="content"><strong><font face="Verdana, Arial, Helvetica, sans-serif"> NAVAGATION:</font></strong></font><font size="2" face="Verdana, Arial, Helvetica, sans-serif" class="content"><br>
</font></strong><font size="2" face="Verdana, Arial, Helvetica, sans-serif" class="content"> <img src="index_files/icon.gif" width="5" height="5">
<a href="http://fexnet.co.nz/design">Design Home</a><br>
<img src="index_files/icon.gif" width="5" height="5"> <a href="emailer/">Contact
Us</a><br>
</font><font size="1" color="#000000" class="content"><font size="2" face="Verdana, Arial, Helvetica, sans-serif" class="content"> <img src="index_files/icon.gif" width="5" height="5">
<a href="about.htm">About Us</a></font></font></font></p> </td>
- <p><font size="1" color="#000000" class="content"><strong> <font size="1" color="#000000" class="content"><strong><font face="Verdana, Arial, Helvetica, sans-serif"> NAVAGATION:</font></strong></font><font size="2" face="Verdana, Arial, Helvetica, sans-serif" class="content"><br>
- </font></strong><font size="2" face="Verdana, Arial, Helvetica, sans-serif" class="content"> <img src="index_files/icon.gif" width="5" height="5">
- <a href="http://fexnet.co.nz/design">Design Home</a><br>
- <img src="index_files/icon.gif" width="5" height="5"> <a href="emailer/">Contact
- Us</a><br>
- </font><font size="1" color="#000000" class="content"><font size="2" face="Verdana, Arial, Helvetica, sans-serif" class="content"> <img src="index_files/icon.gif" width="5" height="5">
- <a href="about.htm">About Us</a></font></font></font></p> </td>
Ok, so you want a list? What kind of tags do we use for a list? Strangely enough the most appropriate tags for marking up a list are
list tags (isn't logic a wonderous thing):
<ul>
<li><a href="/design/">Design Home</a></li>
<li><a href="/design/emailer/">Contact Us</a></li>
<li><a href=""><a href="/design/about.htm">About Us</a></li>
</ul>
- <ul>
- <li><a href="/design/">Design Home</a></li>
- <li><a href="/design/emailer/">Contact Us</a></li>
- <li><a href=""><a href="/design/about.htm">About Us</a></li>
- </ul>
What is the deal with image tags, <br>'s <font> and all that crap?