Quote Originally Posted by steve.ledger View Post
Your site is not centered in any browser as there is nothing telling it do do so.


<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>Curb Company</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body bgcolor="#FFFFFF">
<body style="text-align: center; margin: 0 auto">

<!-- ImageReady Slices (default.psd) -->


<table id="Table_01" width="781" height="793" border="0" cellpadding="0" cellspacing="0">


Notice also that you have used 2 <body tags
Best to use only one <body tag
eg;
<body style="text-align: center; margin: 0 auto" bgcolor="#FFFFFF">

You can also add the align=center to the top table tag, although these days using 'styles' is considered better.
It Sounds Cool and promising!