I am dealing with a bug in IE 6 where for some reason text on the page is being hidden. You can only see it by highulighting it and then clicking off of it. It is wierd. Below is my css can anyone see any problems?
Code:
html, body {
margin: 0;
padding: 0;
color: #333;
text-align: center; /*centers container in IE5Win */
}
body {
background-color: #A8AE90;
}
#container {
width: 840px;
margin: 0 auto; /*centers the div in standard browsers */
text-align: left;
background-color: #EFF0EB;
}
#nav {
width: 180px;
float: left;
margin-left: -1px;
padding: 20px 10px 10px 10px;
font: 11px Verdana, Arial, Helvetica, sans-serif;
color: #4C800A;
}
#nav a, #nav a:visited, #nav a:active, #nav a:link {
color: #4C800A;
text-decoration: none;
}
#nav a:hover {
color: #4C800A;
text-decoration: underline;
}
#nav ul {
margin: 0;
padding: 0;
list-style-type: none;
width: 140px;
}
#nav li {
margin: 0;
padding: 2px 0 5px 5px;
}
#nav p {
font-weight: bold;
font-size: 12px;
}
#content {
padding: 20px 30px 10px 10px;
margin-left: 170px;
border-left: 1px solid #BDBFC2;
background-color: #fff;
font: 11px Verdana, Arial, Helvetica, sans-serif;
color: #333333;
}
h1 {
margin: 0px 0px 15px 0px;
font-size: 13px;
font-weight: bold;
color: #333333;
}
#header {
background-color: #fff;
margin: 0;
height: 77px;
overflow: hidden;
}
#footer {
background-color: #fff;
color: #006;
border-top: 1px solid #BDBFC2;
font-size: 11px;
text-align: right;
padding: 10px 20px 10px 0;
clear: both;
background:#EDEFEE;
}
.message {
font: 11px Verdana, Arial, Helvetica, sans-serif;
color: #CC0000;
font-style:italic;
}
.spacer {
clear: both;
}
.admin-table {
width: 600px;
}
.admin-table td {
font: 11px Verdana, Arial, Helvetica, sans-serif;
color: #4C800A;
padding: 5px;
}
.field {
font: 11px Verdana, Arial, Helvetica, sans-serif;
color: #4C800A;
border: 1px solid #4C800A;
}
.altrow {
background-color: #dedede;
}
p {
font: 11px Verdana, Arial, Helvetica, sans-serif;
color: #333333;
}
a, a:link, a:vistited, a:active {
text-decoration: none;
color: #CC0000;
}
a:hover {
text-decoration: underline;
color: #4C800A;
}