Reputation: 3302
I am having a very weird bug in Internet Explorer 8 for this website. In IE8, the checkbox disappears. However it is there for other browsers such as Firefox or Chrome. In Chrome or Firefox, one can see the checkbox beside the text "Click to compare". However in Internet Explorer it is invisible.
Any idea why that is happening? I need it to be visible so that user can click on it.
Upvotes: 0
Views: 1146
Reputation: 15905
If you remove float:left
from compare_check regular-checkbox
it starts to show in IE8.
Use conditional comments or float:none\9
to hack it for IE8 only.
Upvotes: 2