Hi,
I checked your site in netscape 7 in a mac and it seemd ok.
In mac ie 5.1 you have some display issues and I have adjusted your css (in bold below) which should sort some of them out.
Mac doesn't like html,height:100% as it seems to double the height so you need to hide it from mac.
As it won't place the footer you need to put the footer back in the flow. It also didn't like your floated login input so I changed that as well and the layout seemed better.
These changes have all been give to mac ie only so no other browsers should be affected.
Code:
/* commented backslash hack v2 \*/
html, body{height:100%;}
/* end mac hack */
body {
margin: 0;
padding: 0;
font: 10px verdana, Lucida Sans Unicode, lucida ,arial, sans-serif;
text-align: center;
color: #666;
background-color: #e3e3e3;
height:100%;
}
Code:
#footer {
width: 100%;
height: 20px;
background: #005088 url(/images/footer.gif);
border-top: 1px solid #e9e9e9;
position: absolute;
bottom: 0;
z-index: 2;
}
* > html #footer {position:static}
Code:
#clientlogin input {
border: 1px solid #e6e6e6;
font: normal 10px/14px verdana, Lucida Sans Unicode, lucida , sans-serif;
background: #ffffff;
color: #999;
width: 100px;
height: 14px;
float:left;
}
* > html #clientlogin input {float:none}
Hope that helps.
Paul