Thanks to Anders for pointing out to me the issue I was having with how my Blojsom-based weblog comment page was being rendered under IE7. And once again, Rostislav Hristov came to the rescue and provided me with the fix… thanks Rostislav!!!
For everyone's benefit, the fix is to add more IE7-specific CSS:
<!--[if IE 7]>
<style type="text/css" media="screen">
#content {
height: auto;
padding-bottom: 300px;
}
#contentBodyLeft {
background-color: #D5DEED;
}
#contentBodyCenter {
background: none;
}
#commentform .input {
width: 100%;
}
</style>
<![endif]-->
…where the code in bold is the fix for the comment page misalignment issue.
Thanks for the trouble IE7!
ceo