CSS for IE6 Breaks WP-Polls


Author Message
RJ

Posted: 4/7/2009
Quote message 

There is a line of code in style.ie6.css that prevents poll selections from displaying in the WP-Polls widget. Consider the following snippet from style.ie6.css:

.BlockContent-body ul li
{
height:1%;
background:none;
behavior: expression(this.runtimeStyle.filter?'':this.runtimeStyle.filter="progid:DXImageTransform.Microsoft.AlphaImageLoader(src='" + GetStyleUrl()+"images/BlockContentBullets.png',sizingMethod='crop')");
}

The line "height: 1%;" is the offending line. Remove it or comment it out and poll works fine. I'm not sure what it was supposed to accomplish in the first place.