PWBA Internet Explorer Image Slider Fix

To fix the issue of owl slider images disappearing on a refresh, it can be solved easily by adding this line of code to your custom.scss.liquid file
   .thumbnail-image a {
        opacity: 1 !important;
        height: auto !important;
    }  
Adding a height of auto seems to please Internet Explorer and allow the images to display.

Leave a comment