This is the answer to your first question.
Change:
Code:
<!--[if IE]>
<style type="text/css">
/* place css fixes for all versions of IE in this conditional comment */
#header h2 { top: 0px ; }
#mainContent { top: auto;
bottom: 466px;
height:auto; }
#footer {
top:0px;
height: 28px;
width: 995px; }
#footer p { right: 330px; }
#nav { right: 124px;
z-index: 100; }
</style>
<![endif]-->
To this:
Code:
<!--[if IE]>
<style type="text/css">
/* place css fixes for all versions of IE in this conditional comment */
#header h2 { top: 0px ; }
#mainContent { top: auto;
bottom: 466px;
height:auto; }
#footer {
padding: 0px;
margin: 0px;
top:0px;
height: 28px;
width: 995px; }
#footer p { right: 330px; }
#nav { right: 124px;
z-index: 100; }
</style>
<![endif]-->
Bookmarks