@albeck I can confirm this – it’s because no width is set in the stylesheets for div.item-avatar, yet it is floated. If you add the following to one of your stylesheets, it will fix this:
div.item-avatar {
width: 55px;
height: 60px;
}
ul.item-list div.item-avatar {
width: 50px;
height: 50px;
}
There are a lot more IE glitches besides this – I’m having a go at them today and they’ll be included in this pull request on GitHub when I push what I’m doing locally later:
https://github.com/cuny-academic-commons/cbox-theme/pull/160
Cheers,
Christian