Hello,
After some searching, I found this solution that seems to be working after very minimal testing.
https://stackoverflow.com/questions/2766735/jquery-fadein-fadeout-ie8-does-not-fade
Simply apply the following css to all elements within the
filter: inherit;
opacity: inherit;
In my case, I made some modifications to the responsive-slider.php, so my css looks like this:
html.ie8 .responsive-slider.flexslider .slides li .slide,
html.ie8 .responsive-slider.flexslider .slides li .slide a,
html.ie8 .responsive-slider.flexslider .slides li .slide a img,
html.ie8 .responsive-slider.flexslider .slides li .slide-title,
html.ie8 .responsive-slider.flexslider .slides li .slide-title a,
html.ie8 .responsive-slider.flexslider .slides li .slide-title a h2,
html.ie8 .responsive-slider.flexslider .slides li .slide-title a p {
filter: inherit !important;
opacity: inherit !important;
}
I haven’t tested if every single element within the
has to be declared, nor have I tested if the !important declarations are necessary, but I went ahead and did it anyway and it works.
Hope that helps.
Cheers,
Aaron