In the events.css, there is
.clearfix:before, .clearfix:after { content: “”; display: table; }
.clearfix:after { clear: both; }
.clearfix { zoom: 1; }
.tribe-events-error {display:none;}
.tribe-events-multi-event-day {color: #0F81BB;}
CSS Validation failure says “no attribute of zoom”. Please fix this–my site needs to validate.
I found a blog entry that provides a fix for this:
/* For modern browsers */
.cf:before,
.cf:after {
content:””;
display:table;
}
.cf:after {
clear:both;
}
/* For IE 6/7 (trigger hasLayout) */
.cf {
*zoom:1;
}
Or do a a single rule:
.btcf:after {
content:””;
display:table;
clear:both;
}