After trying a number of the peekaboo fixes, the one that worked was removing
CODE
background:#F5F5F5;
from
CODE
.blog {
padding:15px;
}
AND
.blogbody {
font-family:"Trebuchet MS",Trebuchet,Verdana,Sans-Serif;
color:#000;
font-size:small;
font-weight:normal;
line-height:125%;
}
I don't know what I'd do if I wanted my blog to be a separtate color, but luckily, I don't.
I initially didn't try that fix, because it was always referenced in regard to
CODE
background:#FFF
and I wasn't using that and I wasn't having the problem when I was using the default template and I associated that with default settings.
For what it's worth, these two fixes for the bug
The Holly HackCODE
/* begin hide from IE5-Mac \*/
* html .comments-body { height: 1%; }
/* end hide */
and
Fixing the scrolling DIV display bug in IE6 CODE
body{
background : url(null) fixed no-repeat;
}
Didn't help. At least in my case. They did help others however.
Anyhow, thanks ndns and Lisa Jill for your help. I hope my experience can help others with this infuriating problem.