I am working on a Drupal 7 site, and it's kind of important to make sure it works in IE 8. It looks pretty good so far, except the table on one of the pages is not styling odd and even child rows.
I used the CSS3 tr:nth-child(odd)
and tr:nth-child(even)
to alternate table row background colors. I'm suspecting the reason it's not working in IE8 is because it's CSS3 and it's conflicting.
I did download the HTML5shiv library, and put it in the same directory as my theme's .info
file. I also added the following line to the file:
scripts[] = dist/html5shiv.js
And yes, I double checked the directory listings for each file, and everything seems to be correct.
But none of that seems to be helping, the table is just showing up as having a white background for all the data rows.
Is there anything else I can try to get it working?
EDIT: Yes, I have also enabled JS in IE 8. It's still not working.