http://forumgallery.rollinleonard.com/artists.php
white-space: nowrap; applied to li. gets very screwy in IE. Instead of each .li item staying together and moving to the next line the whole thing becomes one super long line.
Here is the relevant part of the css (text.css)
.artistlist { margin: 0px; padding: 0; }
li.artistlist { display: inline; margin: 0; padding: 0; font-size: .75em; line-height: 1.7em; word-spacing: 5px; white-space: nowrap; } li.artistlist:after { content:", "; } li.artistlist:last-child:after { content:""; } li.last-child{ content:""; display: inline; margin: 0; padding: 0; font-size: .75em; line-height: 1.7em; word-spacing: 5px; } ul li{ margin:0; padding:0; }
.artistlist li {content: expression(this.previousSibling==null?', ':'');}