Well, I was able to fix it... However, I adjusted so many different things in the process... I can't remember what all I edited. So, rather than me giving you a short list of things to change... Here is your new stylesheet for IE6.
You will have to use this with a "conditional statement" in your html. I will post it as one. (has to be in the head of your page between <head> and </head>)
Code:
<head>
<!--[if IE 6]>
<style type='text/css">
/* CSS Document */
div#container {
width:950px;
margin:0 auto;
border-style:ridge;
border-color:#DFE000;
background-color:#DFE000;
}
div#header{
position:relative;
min-height:170px;
height:170px;
background-image:url('../images/topheader.jpg');
width:950px;
}
div#navigation{
background-image:url('../images/leftcolumn.jpg');
background-repeat:repeat-y;
float:left;
width:240px;
margin-left:-961px;
padding-left:2px;
padding-bottom:15px;
min-height:400px;
height:400px;
}
div#extra{
background-image:url('../images/rightcolumn.jpg');
background-repeat:repeat-y;
text-align:right;
float:left;
width:229px;
margin-left:-230px;
padding-bottom:15px;
min-height:400px;
height:400px;
}
div#footer{
background-image:url('../images/footerbanner.jpg');
color: #005826;
min-height:60px;
height:60px;
clear:left;
width:100%;
}
div#wrapper{
float:left;
width:950px;
}
div#content{
padding-top:10px;
margin: 0 240px;
width:471px;
min-height:400px;
height:400px;
}
div#smallcontenta{
width:100px;
height:300px;
background-color:#DFE000;
font-family:Tahoma, Helvetica, Arial;
font-size:12px;
margin-left:10px;
color:#32004B;
padding-top:15px;
}
div#smallcontentb{
width:100px;
background-color:#DFE000;
font-family:Tahoma, Helvetica, Arial;
font-size:12px;
margin-left:-349px;
color:#32004B;
padding-top:50px;
}
div#table{
table-layout:fixed;
width:450px;
border:solid;
border-color:#32004B;
border-width:medium;
}
div#table2{
table-layout:fixed;
width:410px;
border:solid;
border-color:#32004B;
border-width:medium;
}
div#cellleft{
height:24px;
width:195px;
border:solid;
border-color:#32004B;
border-width:thin;
font-family:Tahoma, Helvetica, Arial;
}
div#cellmiddle{
height:24px;
width:195px;
border:solid;
border-color:#32004B;
border-width:thin;
font-family:Tahoma, Helvetica, Arial;
}
div#cellright{
height:24px;
width:35px;
border:solid;
border-color:#32004B;
border-width:thin;
font-family:Tahoma, Helvetica, Arial;
text-align:center;
}
body{
background-image:url('../images/background.jpg');
background-repeat:repeat;
}
h1{
color:#32004B;
font-family:Tahoma, Helvetica, Arial;
font-size:175%;
font-weight:bolder;
margin-left:10px;
text-decoration:underline;
}
h2{
color:#32004B;
font-family:Tahoma, Helvetica, Arial;
font-size:125%;
font-weight:bolder;
margin-left:10px;
}
h3{
color:#32004B;
font-family:Tahoma, Helvetica, Arial;
font-size:105%;
font-weight:bolder;
margin-left:10px;
}
h4{
color:#32004B;
font-family:Tahoma, Helvetica, Arial;
font-size:12px;
text-align:right;
margin-left:60px;
}
p{
color:#32004B;
font-family:Tahoma, Helvetica, Arial;
font-size:14px;
margin-left:10px;
text-align:left;
}
ul.square {
list-style-type:square;
color:#34004B;
font-family:Tahoma, Helvetica, Arial;
font-size:14px;
}
ul.circle {
list-style-type:circle;
color:#34004B;
font-family:Tahoma, Helvetica, Arial;
font-size:12px;
font-style:italic
}
table.one {
table-layout:fixed;
border:thin;
border-color:#DFE000;
width:150px;
padding-left:10px;
}
</style>
<![endif]-->
</head>
Bookmarks