ah sorry about that here is what i have so far
<body class="thrColLiqHdr">
<div id="container">
<div id="header">
<h1><img src="../images/header_image1.jpg" width="770" height="341" border="0" usemap="#Map" />
<map name="Map" id="Map"><area shape="rect" coords="282,114,330,130" href="#" alt="home " />
<area shape="rect" coords="278,136,338,154" href="#" alt="gallery" />
<area shape="rect" coords="276,158,360,176" href="#" alt="technical" />
<area shape="rect" coords="278,182,334,198" href="#" alt="quote" />
<area shape="rect" coords="279,202,365,220" href="#" alt="contact us" />
<area shape="rect" coords="441,163,751,193" href="#" alt="sales@thepastrecast.com" />
</map>
</h1>
</div>
<div class="thrColLiqHdr" align="left" id="mainContent">
<div
style="border:rgb(255, 255, 255); display: block; height: 125px; width: 770px;">
<div class="left"><!-- TemplateBeginEditable name="contentleft" -->
<p>contentleft</p>
<!-- TemplateEndEditable --></div>
<div class="right-top"><!-- TemplateBeginEditable name="content top right" -->content top right<!-- TemplateEndEditable --></div>
<div class="right-bottom-left"><!-- TemplateBeginEditable name="contentbottmleft" -->contentbottomleft<!-- TemplateEndEditable --></div>
<div class="right-bottom-right"><!-- TemplateBeginEditable name="contentbottomright" -->contentbottomright<!-- TemplateEndEditable --></div>
</div>
</div>
<div id="footer">
<p><img src="../images/footer_menu.jpg" width="770" height="31" /></p>
</div>
<div align="right" id="footer2">
<table class="footertxt" width="770" border="0" cellspacing="0" cellpadding="0">
<tr>
<td><div align="right">
<p>home . gallery . quote . contact us<br />
(c) the past re-cast ltd<br />
site by: michaelassociates</p>
</div></td>
<td width="70"><div align="center"><img src="../images/footer_image.jpg" width="55" height="40" /></div></td>
</tr>
</table>
</div>
</div>
</div>
</body>
</html>
CSS
@charset "utf-8";
body {
font: 100% Verdana, Arial, Helvetica, sans-serif;
margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
padding: 0;
text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
color: #000000;
}
.thrColLiqHdr #container {
width: 770px;
margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
background-color: #FFFFD9;
border-left: #CCCCCC solid;
border-right: #CCCCCC solid;
}
.thrColLiqHdr #header {
background: #DDDDDD;
}
.thrColLiqHdr #header h1 {
margin: 0;
}
.thrColLiqHdr #mainContent {
width: 770px;
font-size:small;
font-family: Arial, Helvetica, sans-serif;
font-weight: normal;
background-color: #FFFFD9;
height: auto;
}
.thrColLiqHdr #footer {
background:#DDDDDD;
}
.thrColLiqHdr #footer p {
margin: 0;
}
.footertxt { font-family:Arial, Helvetica, sans-serif; font-size: x-small; background-color:#FFFFD9; text-align:right;}
.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
float: right;
margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page The floated element must precede the element it should be next to on the page. */
float: left;
margin-right: 8px;
}
.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain its child floats */
clear:both;
height:0;
font-size: 1px;
line-height: 0px;
}
.left {
border-color:#FFFFD9;
display: block;
width: 227px;
height: auto;
float: left;
position:relative;
margin-top: 10px;
padding-left: 10px;
margin-left: 15px;
}
.right {
}
.right-top {
border-color:#FFFFD9;
display: block;
position: relative;
float: left;
padding-left: 10px;
margin-top: 10px;
width: 470px;
height: auto;
margin-left: 10px;
margin-right: 0px;
padding-right: 0px;
}
.right-bottom-left {
border-color: #FFFFD9;
display: block;
position: relative;
float: left;
width: 234px;
padding-left: 10px;
margin-left: 10px;
margin-top: 10px;
height: auto;
margin-right: 0px;
padding-right: 0px;
}
.right-bottom-right {
border-color: #FFFFD9;
display: block;
float: left;
position: relative;
width: 209px;
margin-top: 10px;
margin-left: 10px;
padding-left: 10px;
height: auto;
margin-right: 0px;
padding-right: 0px;
} |