It looks fine in FF, and IE 7. But this is the culprit in IE 6:
TEXTAREA {
float: left;
margin: auto;
display: block;
width: 95%;
}
IE 6 doesn't like the float: left with a % width. You can comment it out, or
remove it.
It looks fine in FF, and IE 7. But this is the culprit in IE 6:
TEXTAREA {
float: left;
margin: auto;
display: block;
width: 95%;
}
IE 6 doesn't like the float: left with a % width. You can comment it out, or
remove it.