I\'m currently having problems with Internet Explorer 8 ignoring padding/line-heights that I have on a list which includes a check box.
To start off here is my CSS and X
// fix for ie8 printed checkbox bug using jquery $('input[type=checkbox]').live('change', function(){ if($(this).is(':checked')){ $(this).attr('checked', true); } else { $(this).attr('checked', false); } });
IE8 checkbox not printing bug fix using jQuery