Thanks Kevin.
I am using Chrome. I figured it out. It was the IntenseDebate Custom CSS portion that I had implemented to try and raise the comments box above the existing comments. I isolated it down to the position properties in each of the rules. My custom CSS in the IntenseDebate panel looks like this now:
#idc-container-parent #idc-container {
width: 665px;
/*position: relative;*/ //this is causing issues when position is relative here
padding-top: 0px;
}
#idc-container-parent #idc-container {
/*position: relative;*/ //this is causing issues when position is relative here
padding-top: 320px;
}
#idc-container-parent #idc-container #IDCommentsNewThreadCover {
/*position: absolute;*/ //this is not causing issues when position is relative here
top: 0;
left: 0;
}
Still haven’t managed to figure out how to simply raise the darn comments box above the existing comments. Any ideas?
Thanks
Benjamin